[anjuta] Updated Telugu Translation
- From: Sasi Bhushan Boddepalli <sasib src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [anjuta] Updated Telugu Translation
- Date: Tue, 17 Apr 2012 10:10:07 +0000 (UTC)
commit f8cac01e2a10b076f5484275af6332ffc2a5159a
Author: Sasi Bhushan <sasi swecha net>
Date: Tue Apr 17 15:10:48 2012 +0530
Updated Telugu Translation
plugins/language-support-js/js-context.c | 627 ++++-
plugins/language-support-js/js-context.h | 93 +-
plugins/language-support-js/js-node.c | 205 ++-
plugins/language-support-js/js-node.h | 93 +-
plugins/language-support-js/js-parser-y-tab.c | 4644 ++++++++++++++++++++++++-
plugins/language-support-js/js-parser-y-tab.h | 169 +-
plugins/language-support-js/jsparse.c | 147 +-
plugins/language-support-js/jsparse.h | 14 +-
plugins/language-support-js/jstypes.h | 115 +-
plugins/language-support-js/lex.l | 127 +-
plugins/language-support-js/lex.yy.c | 3699 ++++++++++++++++++++-
plugins/language-support-js/lex.yy.h | 340 ++-
po/te.po | 421 +--
13 files changed, 10414 insertions(+), 280 deletions(-)
---
diff --git a/plugins/language-support-js/js-context.c b/plugins/language-support-js/js-context.c
deleted file mode 120000
index 64cec63..0000000
--- a/plugins/language-support-js/js-context.c
+++ /dev/null
@@ -1 +0,0 @@
-../symbol-db/anjuta-tags/js-parser/js-context.c
\ No newline at end of file
diff --git a/plugins/language-support-js/js-context.c b/plugins/language-support-js/js-context.c
new file mode 100644
index 0000000..9bf2278
--- /dev/null
+++ b/plugins/language-support-js/js-context.c
@@ -0,0 +1,626 @@
+/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 4; tab-width: 4 -*- */
+/*
+ Copyright (C) 2009 Maxim Ermilov <zaspire rambler ru>
+
+ 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 of the License, 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
+ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+*/
+
+#include <stdio.h>
+#include <string.h>
+#include "js-context.h"
+
+typedef struct _JSContextPrivate JSContextPrivate;
+
+struct _JSContextPrivate {
+ JSNode *node;
+};
+
+static void interpretator (JSNode *node, JSContext *my_cx, GList **calls);
+
+G_DEFINE_TYPE (JSContext, js_context, G_TYPE_OBJECT);
+
+#define JS_CONTEXT_GET_PRIVATE(i) \
+ (G_TYPE_INSTANCE_GET_PRIVATE ((i), JS_TYPE_CONTEXT, JSContextPrivate))
+
+static void
+js_context_init (JSContext *object)
+{
+ JSContextPrivate *priv = JS_CONTEXT_GET_PRIVATE (object);
+ object->func_arg = NULL;
+ object->func_name = NULL;
+ object->parent = NULL;
+ object->childs = NULL;
+ object->local_var = NULL;
+ object->bline = 0;
+ object->eline = 0;
+ object->ret_type = NULL;
+
+ priv->node = NULL;
+}
+
+static void
+js_context_finalize (GObject *object)
+{
+ JSContext *self = JS_CONTEXT (object);
+ JSContextPrivate *priv = JS_CONTEXT_GET_PRIVATE (self);
+
+ if (priv->node)
+ g_object_unref (priv->node);
+
+ g_list_foreach (self->local_var, (GFunc)g_free, NULL);
+ g_list_free (self->local_var);
+ g_list_foreach (self->childs, (GFunc)g_object_unref, NULL);
+ g_list_free (self->childs);
+ g_free (self->func_name);
+ g_list_free (self->ret_type);
+ g_list_free (self->func_arg);
+
+ G_OBJECT_CLASS (js_context_parent_class)->finalize (object);
+}
+
+static void
+js_context_class_init (JSContextClass *klass)
+{
+ GObjectClass* object_class = G_OBJECT_CLASS (klass);
+ /*GObjectClass* parent_class = G_OBJECT_CLASS (klass);*/
+
+ g_type_class_add_private (klass, sizeof (JSContextPrivate));
+
+ object_class->finalize = js_context_finalize;
+}
+
+
+JSContext*
+js_context_new_from_node (JSNode *node, GList **calls)
+{
+ JSContext *self = g_object_new (JS_TYPE_CONTEXT, NULL);
+ JSContextPrivate *priv = JS_CONTEXT_GET_PRIVATE (self);
+ g_object_ref (node);
+ priv->node = node;
+ interpretator (node, self, calls);
+ return self;
+}
+
+JSNode*
+js_context_get_last_assignment (JSContext *my_cx, const gchar *name)
+{
+ GList *i;
+ for (i = g_list_last (my_cx->local_var); i; i = g_list_previous (i))
+ {
+ Var *t = (Var *)i->data;
+ if (!t->name)
+ continue;
+ if (g_strcmp0 (t->name, name) != 0)
+ continue;
+ if (t->node)
+ g_object_ref (t->node);
+ return t->node;
+ }
+ for (i = g_list_last (my_cx->childs); i; i = g_list_previous (i))
+ {
+ JSContext *t = (JSContext *)i->data;
+ JSNode *node = js_context_get_last_assignment (t, name);
+ if (node)
+ return node;
+ }
+ return NULL;
+}
+
+
+static JSContext *
+js_context_new (JSContext *parent)
+{
+ JSContext *self = g_object_new (JS_TYPE_CONTEXT, NULL);
+ self->parent = parent;
+ return self;
+}
+
+Type*
+js_context_get_node_type (JSContext *my_cx, JSNode *node)
+{
+ Type *ret;
+ gchar *name;
+ if (!node)
+ return NULL;
+
+ ret = g_new (Type, 1);
+ ret->isFuncCall = FALSE;
+ switch ((JSNodeArity)node->pn_arity)
+ {
+ case PN_NAME:
+ switch ((JSTokenType)node->pn_type)
+ {
+ case TOK_NAME:
+ name = js_node_get_name (node);
+ if (!name)
+ g_assert_not_reached ();
+ else
+ {
+ JSNode *t = js_context_get_last_assignment (my_cx, name);
+ if (t)
+ {
+ Type *tname = js_context_get_node_type (my_cx, t);
+ if (tname)
+ return tname;
+ else
+ ret->name = name;
+ }
+ else
+ ret->name = name;
+ return ret;
+ }
+ break;
+ case TOK_DOT:
+ name = js_node_get_name (node);
+ if (!name)
+ g_assert_not_reached ();
+ else
+ {
+ JSNode *t = js_context_get_last_assignment (my_cx, name);
+ if (t)
+ {
+ Type *tname = js_context_get_node_type (my_cx, t);
+ if (tname)
+ return tname;
+ else
+ ret->name = name;
+ }
+ else
+ ret->name = name;
+ return ret;
+ }
+ break;
+ default:
+ g_assert_not_reached ();
+ break;
+ }
+ break;
+ case PN_NULLARY:
+ switch ((JSTokenType)node->pn_type)
+ {
+ case TOK_STRING:
+// puts ("string");
+ ret->name = g_strdup ("String");
+ return ret;
+ break;
+ case TOK_NUMBER:
+/// puts ("float");
+ ret->name = g_strdup ("Number");
+ return ret;
+ break;
+ case TOK_PRIMARY:
+ switch (node->pn_op)
+ {
+ case JSOP_FALSE:
+ case JSOP_TRUE:
+ ret->name = g_strdup ("Boolean");
+ return ret;
+ break;
+ case JSOP_NULL:
+ ret->name = g_strdup ("null");
+ return ret;
+ break;
+ case JSOP_THIS:
+ ret->name = g_strdup ("Object");
+ return ret;
+ break;
+ default:
+ printf ("%d\n", node->pn_op);
+ g_assert_not_reached ();
+ break;
+ }
+ break;
+ default:
+ printf ("%d\n", node->pn_type);
+ g_assert_not_reached ();
+ break;
+ }
+ break;
+ case PN_LIST:
+ switch ((JSTokenType)node->pn_type)
+ {
+ case TOK_NEW:
+ name = js_node_get_name (node->pn_u.list.head);
+ if (!name)
+ g_assert_not_reached ();
+ else
+ {
+ ret->name = name;
+ return ret;
+ }
+ break;
+ case TOK_LP:
+ name = js_node_get_name (node->pn_u.list.head);
+ if (!name)
+ g_assert_not_reached ();
+ else
+ {
+ ret->isFuncCall = TRUE;
+ ret->name = name;
+ return ret;
+ }
+ break;
+ case TOK_PLUS:
+/*TODO if (node->pn_extra == PNX_STRCAT)
+ return g_strdup ("String");*/
+ ret->name = g_strdup ("Number");
+ return ret;
+ break;
+ case TOK_RC:
+//TODO:
+ break;
+ default:
+ printf ("%d\n", node->pn_type);
+ g_assert_not_reached ();
+ break;
+ }
+ break;
+ case PN_FUNC:
+ ret->name = g_strdup ("Function");
+ return ret;
+ break;
+ case PN_BINARY:
+ switch ((JSTokenType)node->pn_type)
+ {
+ case TOK_MINUS:
+ case TOK_PLUS:
+/*TODO if (node->pn_extra == PNX_STRCAT)
+ return g_strdup ("String");*/
+ ret->name = g_strdup ("Number");
+ return ret;
+ break;
+ default:
+ printf ("%d\n", node->pn_type);
+ g_assert_not_reached ();
+ break;
+ }
+ break;
+ case PN_UNARY:
+ switch ((JSTokenType)node->pn_type)
+ {
+ case TOK_RP:
+ return js_context_get_node_type (my_cx, node->pn_u.unary.kid);
+ break;
+ case TOK_UNARYOP:
+ return js_context_get_node_type (my_cx, node->pn_u.unary.kid);
+ break;
+ default:
+ printf ("%d\n", node->pn_type);
+ g_assert_not_reached ();
+ break;
+ }
+ break;
+ case PN_TERNARY:
+ switch ((JSTokenType)node->pn_type)
+ {
+/*TODO case TOK_HOOK:
+ return get_node_type (node->pn_u.ternary.kid2, my_cx);
+ break;*/
+ default:
+ printf ("%d\n", node->pn_type);
+ g_assert_not_reached ();
+ break;
+ }
+ break;
+ default:
+ printf ("%d\n", node->pn_type);
+ g_assert_not_reached ();
+ break;
+ }
+ return NULL;
+}
+
+static void
+interpretator (JSNode *node, JSContext *my_cx, GList **calls)
+{
+ JSNode *iter;
+
+ if (node == NULL)
+ return;
+ switch ((JSNodeArity)node->pn_arity)
+ {
+ case PN_FUNC:
+ {
+ Var *tvar = g_new (Var, 1);
+ tvar->name = NULL;
+ tvar->line = node->pn_pos.end;
+ tvar->node = node;
+
+ if (node->pn_u.func.name) {
+ tvar->name = js_node_get_name (node->pn_u.func.name);
+//puts (tvar->name);
+ }
+ if (tvar->name)
+ {
+ my_cx->local_var = g_list_append (my_cx->local_var, tvar);
+ JSContext *t = js_context_new (my_cx);
+ t->func_name = g_strdup (tvar->name);
+//puts (t->func_name);
+ t->bline = node->pn_pos.begin;
+ t->eline = node->pn_pos.end;
+ interpretator (node->pn_u.func.body, t, calls);
+ my_cx->childs = g_list_append (my_cx->childs, t);
+//puts (t->func_name);
+/* JSAtom ** params = (JSAtom **)g_malloc (function->nargs * sizeof (JSAtom *));
+ gint i;
+ for (i = 0; i < function->nargs; i++) {
+ params[i] = NULL;
+ }
+ JSScope * scope = OBJ_SCOPE(object);
+ JSScopeProperty * scope_property;
+ for (scope_property = SCOPE_LAST_PROP (scope);
+ scope_property != NULL;
+ scope_property = scope_property->parent) {
+ if (!JSID_IS_ATOM (scope_property->id) || ((uint16)scope_property->shortid) >= function->nargs) {
+ continue;
+ }
+ params[(uint16) scope_property->shortid] = JSID_TO_ATOM (scope_property->id);
+ }
+ for (i = 0; i < function->nargs; i++) {
+ g_assert (params[i] != NULL);
+ const gchar *code = js_AtomToPrintableString(cx, params[i]);
+ g_assert (code != NULL);
+ t->func_arg = g_list_append (t->func_arg, g_strdup (code));
+ }*/
+ JSNode *i = JS_NODE (node->pn_u.func.args);
+ if (i)
+ {
+ g_assert (i->pn_arity == PN_LIST);
+ for (i = JS_NODE (i->pn_u.list.head); i; i = JS_NODE (i->pn_next))
+ {
+ g_assert (i->pn_arity == PN_NAME);
+ t->func_arg = g_list_append (t->func_arg, js_node_get_name (i));
+ }
+ }
+ }
+ }
+ break;
+ case PN_LIST:
+ switch ((JSTokenType)node->pn_type)
+ {
+ case TOK_LC:
+ {
+ JSContext *t = js_context_new (my_cx);
+ t->bline = node->pn_pos.begin;
+ t->eline = node->pn_pos.end;
+ for (iter = node->pn_u.list.head; iter != NULL; iter = iter->pn_next)
+ {
+ interpretator (iter, t, calls);
+ }
+ my_cx->childs = g_list_append (my_cx->childs, t);
+ }
+ break;
+ case TOK_LP:
+ {
+ gchar *fname = js_node_get_name (node->pn_u.list.head);
+ if (!fname)
+ break;
+ FuncCall *t = g_new (FuncCall, 1);
+ t->name = fname;
+ t->list = ((JSNode*)node->pn_u.list.head)->pn_next;
+ *calls = g_list_append (*calls, t);
+//printf ("call to %s\n", t->name);
+ }
+ break;
+ case TOK_VAR:
+ for (iter = node->pn_u.list.head; iter != NULL; iter = iter->pn_next)
+ {
+ g_assert (iter->pn_type == TOK_NAME);
+
+ Var *t = g_new (Var, 1);
+ t->name = js_node_get_name (iter);
+ t->node = iter->pn_u.name.expr;
+ t->line = iter->pn_pos.end;
+ my_cx->local_var = g_list_append (my_cx->local_var, t);
+ }
+ break;
+ case TOK_RC:
+ for (iter = node->pn_u.list.head; iter != NULL; iter = iter->pn_next)
+ {
+ //add to Context
+ }
+ break;
+ default:
+ break;
+ }
+ case PN_BINARY:
+ switch ((JSTokenType)node->pn_type)
+ {
+ case TOK_ASSIGN:
+ ///NOT COMPLETE
+ {
+ if (!node->pn_u.binary.left)
+ break;
+ Var *t = (Var *)g_new (Var, 1);
+ t->name = js_node_get_name (node->pn_u.binary.left);
+ t->node = node->pn_u.binary.right;
+ t->line = node->pn_pos.end;
+ my_cx->local_var = g_list_append (my_cx->local_var, t);
+ }
+ break;
+ case TOK_WHILE:
+ case TOK_FOR:
+ {
+ JSContext *t = js_context_new (my_cx);
+ t->bline = node->pn_pos.begin;
+ t->eline = node->pn_pos.end;
+ interpretator (node->pn_u.binary.right, t, calls);
+ my_cx->childs = g_list_append (my_cx->childs, t);
+ }
+ break;
+ case TOK_DO:
+ {
+ JSContext *t = js_context_new (my_cx);
+ t->bline = node->pn_pos.begin;
+ t->eline = node->pn_pos.end;
+ interpretator (node->pn_u.binary.left, t, calls);
+ my_cx->childs = g_list_append (my_cx->childs, t);
+ }
+ break;
+ default:
+ break;
+ }
+ break;
+ case PN_UNARY:
+ switch ((JSTokenType)node->pn_type)
+ {
+ case TOK_SEMI:
+ interpretator (node->pn_u.unary.kid, my_cx, calls);
+ break;
+ case TOK_RETURN:
+ {
+ Type *type = js_context_get_node_type (my_cx, node->pn_u.unary.kid);
+ if (type)
+ {
+ JSContext *i;
+// puts (type);
+ for (i = my_cx; i; i = i->parent)
+ {
+ if (!i->func_name)
+ continue;
+ i->ret_type = g_list_append (i->ret_type, type->name);
+ break;
+ }
+ }
+ }
+ break;
+ default:
+ break;
+ }
+ break;
+ case PN_TERNARY:
+ switch ((JSTokenType)node->pn_type)
+ {
+ case TOK_IF:
+/*TODO if (node->pn_kid2)
+ {
+ Context *t = new Context (my_cx);
+ t->bline = node->pn_kid2->pn_pos.begin.lineno;
+ t->eline = node->pn_kid2->pn_pos.end.lineno;
+ interpretator (node->pn_kid2, t, calls);
+ my_cx->childs = g_list_append (my_cx->childs, t);
+ }
+ if (node->pn_kid3)
+ {
+ Context *t = new Context (my_cx);
+ t->bline = node->pn_kid3->pn_pos.begin.lineno;
+ t->eline = node->pn_kid3->pn_pos.end.lineno;
+ interpretator (node->pn_kid3, t, calls);
+ my_cx->childs = g_list_append (my_cx->childs, t);
+ }*/
+ break;
+ default:
+ break;
+ }
+ break;
+ case PN_NAME:
+ case PN_NULLARY:
+ break;
+ default:
+ printf ("%d\n", node->pn_type);
+ g_assert_not_reached ();
+ break;
+ }
+}
+
+JSNode*
+js_context_get_member (JSContext *my_cx, const gchar *tname, const gchar *mname)
+{
+ GList *i;
+ gchar *name = g_strconcat (tname, ".prototype", NULL);
+ gchar *full_name = g_strdup_printf ("%s.%s", name, mname);
+//puts (name);
+ for (i = g_list_last (my_cx->local_var); i; i = g_list_previous (i))
+ {
+ Var *t = (Var *)i->data;
+ if (!t->name)
+ continue;
+ if (strncmp (t->name, name, strlen (name)) != 0)
+ continue;
+//printf ("%s==%s\n", name, t->name);
+ if (strcmp (t->name, full_name) == 0)
+ {
+ return t->node;
+ }
+ else
+ {
+ JSNode *node = js_node_get_member_from_rc (t->node, mname);
+ if (node)
+ return node;
+ }
+ }
+ for (i = g_list_last (my_cx->childs); i; i = g_list_previous (i))
+ {
+ JSContext *t = JS_CONTEXT (i->data);
+ JSNode *tmp = js_context_get_member (t, tname, mname);
+ if (tmp)
+ return tmp;
+ }
+ return NULL;
+}
+
+GList*
+js_context_get_func_ret_type (JSContext *my_cx, const gchar* name)
+{
+ GList *i;
+ g_assert (name != NULL);
+ if (my_cx->func_name)
+ {
+ if (g_strcmp0 (my_cx->func_name, name) == 0)
+ {
+ return my_cx->ret_type;//TODO:Fix this
+ }
+ }
+ for (i = g_list_last (my_cx->childs); i; i = g_list_previous (i))
+ {
+ JSContext *t = JS_CONTEXT (i->data);
+ GList *ret = js_context_get_func_ret_type (t, name);
+ if (ret)
+ return ret;
+ }
+ return NULL;
+}
+
+GList*
+js_context_get_member_list (JSContext *my_cx, const gchar *tname)
+{
+ GList *i, *ret = NULL;
+
+ g_return_val_if_fail (tname != NULL, NULL);
+
+ gchar *name = g_strconcat (tname, ".prototype", NULL);
+
+ for (i = g_list_last (my_cx->local_var); i; i = g_list_previous (i))
+ {
+ Var *t = (Var *)i->data;
+ if (!t->name)
+ continue;
+ if (strncmp (t->name, name, strlen (name)) != 0)
+ continue;
+ if (strlen (name) != strlen (t->name))
+ ret = g_list_append (ret, g_strdup (t->name));
+ else
+ {
+ GList *tmp = js_node_get_list_member_from_rc (t->node);
+ ret = g_list_concat (ret, tmp);
+ }
+ }
+ for (i = g_list_last (my_cx->childs); i; i = g_list_previous (i))
+ {
+ JSContext *t = JS_CONTEXT (i->data);
+ ret = g_list_concat (ret, js_context_get_member_list (t, tname));
+ }
+ return ret;
+}
diff --git a/plugins/language-support-js/js-context.h b/plugins/language-support-js/js-context.h
deleted file mode 120000
index e132a82..0000000
--- a/plugins/language-support-js/js-context.h
+++ /dev/null
@@ -1 +0,0 @@
-../symbol-db/anjuta-tags/js-parser/js-context.h
\ No newline at end of file
diff --git a/plugins/language-support-js/js-context.h b/plugins/language-support-js/js-context.h
new file mode 100644
index 0000000..3398b86
--- /dev/null
+++ b/plugins/language-support-js/js-context.h
@@ -0,0 +1,92 @@
+/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 4; tab-width: 4 -*- */
+/*
+ Copyright (C) 2009 Maxim Ermilov <zaspire rambler ru>
+
+ 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 of the License, 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
+ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+*/
+
+#ifndef _JS_CONTEXT_H_
+#define _JS_CONTEXT_H_
+
+#include <glib-object.h>
+
+#include "js-node.h"
+
+typedef struct
+{
+ gchar *name;
+ JSNode *list;
+} FuncCall;
+
+typedef struct
+{
+ gchar *name;
+ JSNode *node;
+ gint line;
+} Var;
+
+typedef struct
+{
+ gchar *name;
+ gboolean isFuncCall;
+} Type;
+
+G_BEGIN_DECLS
+
+#define JS_TYPE_CONTEXT (js_context_get_type ())
+#define JS_CONTEXT(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), JS_TYPE_CONTEXT, JSContext))
+#define JS_CONTEXT_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), JS_TYPE_CONTEXT, JSContextClass))
+#define JS_IS_CONTEXT(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), JS_TYPE_CONTEXT))
+#define JS_IS_CONTEXT_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), JS_TYPE_CONTEXT))
+#define JS_CONTEXT_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), JS_TYPE_CONTEXT, JSContextClass))
+
+typedef struct _JSContextClass JSContextClass;
+typedef struct _JSContext JSContext;
+
+struct _JSContextClass
+{
+ GObjectClass parent_class;
+};
+
+struct _JSContext
+{
+ GObject parent_instance;
+
+ GList *local_var;
+ gint bline, eline;
+ JSContext *parent;
+ GList *childs;
+ gchar *func_name;
+ GList *ret_type;
+ GList *func_arg;/*name only*/
+};
+
+GType js_context_get_type (void) G_GNUC_CONST;
+
+JSContext* js_context_new_from_node (JSNode *node, GList **calls);
+
+JSNode* js_context_get_last_assignment (JSContext *my_cx, const gchar *name);
+
+Type* js_context_get_node_type (JSContext *my_cx, JSNode *node);
+
+JSNode* js_context_get_member (JSContext *my_cx, const gchar *tname, const gchar *mname);
+
+GList* js_context_get_func_ret_type (JSContext *my_cx, const gchar* name);
+
+GList* js_context_get_member_list (JSContext *my_cx, const gchar *tname);
+
+G_END_DECLS
+
+#endif /* _JS_CONTEXT_H_ */
diff --git a/plugins/language-support-js/js-node.c b/plugins/language-support-js/js-node.c
deleted file mode 120000
index fa0c558..0000000
--- a/plugins/language-support-js/js-node.c
+++ /dev/null
@@ -1 +0,0 @@
-../symbol-db/anjuta-tags/js-parser/js-node.c
\ No newline at end of file
diff --git a/plugins/language-support-js/js-node.c b/plugins/language-support-js/js-node.c
new file mode 100644
index 0000000..982b6b7
--- /dev/null
+++ b/plugins/language-support-js/js-node.c
@@ -0,0 +1,204 @@
+/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 4; tab-width: 4 -*- */
+/*
+ Copyright (C) 2009 Maxim Ermilov <zaspire rambler ru>
+
+ 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 of the License, 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
+ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+*/
+#include "stdio.h"
+
+#include "js-node.h"
+#include "js-parser-y-tab.h"
+#include "lex.yy.h"
+
+typedef struct _JSNodePrivate JSNodePrivate;
+
+struct _JSNodePrivate {
+ GList *missed;
+};
+
+#define JS_NODE_GET_PRIVATE(i) \
+ (G_TYPE_INSTANCE_GET_PRIVATE ((i), JS_TYPE_NODE, JSNodePrivate))
+
+G_DEFINE_TYPE (JSNode, js_node, G_TYPE_OBJECT);
+
+static void
+js_node_init (JSNode *object)
+{
+ JSNodePrivate *priv = JS_NODE_GET_PRIVATE (object);
+ object->pn_u.func.body = NULL;
+ object->pn_u.func.args = NULL;
+ object->pn_u.func.name = NULL;
+ object->pn_next = NULL;
+ priv->missed = NULL;
+}
+
+static void
+js_node_finalize (GObject *object)
+{
+ JSNode *self = JS_NODE (object);
+ switch (self->pn_arity)
+ {
+ case PN_FUNC:
+ if (self->pn_u.func.body)
+ g_object_unref (self->pn_u.func.body);
+ if (self->pn_u.func.name)
+ g_object_unref (self->pn_u.func.name);
+// void *args;
+
+ break;
+ case PN_LIST:
+ if (self->pn_u.list.head)
+ g_object_unref (self->pn_u.list.head);
+ break;
+ case PN_TERNARY:
+ break;
+ case PN_BINARY:
+ if (self->pn_u.binary.left)
+ g_object_unref (self->pn_u.binary.left);
+ if (self->pn_u.binary.right)
+ g_object_unref (self->pn_u.binary.right);
+ break;
+ case PN_UNARY:
+ if (self->pn_u.unary.kid)
+ g_object_unref (self->pn_u.unary.kid);
+ break;
+ case PN_NAME:
+ if (self->pn_u.name.expr)
+ g_object_unref (self->pn_u.name.expr);
+//TODO:Fix g_object_unref (self->pn_u.name.name);
+ break;
+ case PN_NULLARY:
+ break;
+ }
+
+ if (self->pn_next)
+ g_object_unref (self->pn_next);
+ G_OBJECT_CLASS (js_node_parent_class)->finalize (object);
+}
+
+static void
+js_node_class_init (JSNodeClass *klass)
+{
+ GObjectClass* object_class = G_OBJECT_CLASS (klass);
+ /*GObjectClass* parent_class = G_OBJECT_CLASS (klass);*/
+ g_type_class_add_private (klass, sizeof (JSNodePrivate));
+ object_class->finalize = js_node_finalize;
+}
+
+gchar*
+js_node_get_name (JSNode *node)
+{
+ g_return_val_if_fail (node, NULL);
+ g_assert (JS_IS_NODE (node));
+
+ if (node->pn_arity == PN_NULLARY)
+ {
+ return NULL;
+ }
+ if (node->pn_arity != PN_NAME)
+ return NULL;
+ switch ((JSTokenType)node->pn_type)
+ {
+ case TOK_NAME:
+ return g_strdup(node->pn_u.name.name);
+ break;
+ case TOK_DOT:
+ if (!node->pn_u.name.expr || !node->pn_u.name.name)
+ return NULL;
+ return g_strdup_printf ("%s.%s", js_node_get_name (node->pn_u.name.expr), js_node_get_name (node->pn_u.name.name));
+ break;
+ default:
+ g_assert_not_reached ();
+ break;
+ }
+ return NULL;
+}
+
+GList*
+js_node_get_list_member_from_rc (JSNode* node)
+{
+ GList *ret = NULL;
+ JSNode* iter;
+ if (node->pn_type != TOK_RC)
+ return NULL;
+ for (iter = node->pn_u.list.head; iter != NULL; iter = iter->pn_next)
+ {
+ const gchar* name = js_node_get_name (iter->pn_u.binary.left);
+ if (!name)
+ g_assert_not_reached ();
+ else
+ ret = g_list_append (ret, g_strdup (name));
+ }
+ return ret;
+}
+
+JSNode*
+js_node_get_member_from_rc (JSNode* node, const gchar *mname)
+{
+ JSNode* iter;
+ if (node->pn_type != TOK_RC)
+ return NULL;
+ for (iter = node->pn_u.list.head; iter != NULL; iter = iter->pn_next)
+ {
+ const gchar* name = js_node_get_name (iter->pn_u.binary.left);
+ if (!name)
+ {
+ g_assert_not_reached ();
+ continue;
+ }
+ if (g_strcmp0 (mname, name) != 0)
+ continue;
+ if (iter->pn_u.binary.right)
+ g_object_ref (iter->pn_u.binary.right);
+ return iter->pn_u.binary.right;
+ }
+ return NULL;
+}
+
+extern JSNode *global;
+extern GList *line_missed_semicolon;
+
+JSNode*
+js_node_new_from_file (const gchar *name)
+{
+ FILE *f = fopen (name, "r");
+ JSNodePrivate *priv;
+
+ line_missed_semicolon = NULL;
+ global = NULL;
+ yyset_lineno (1);
+ YY_BUFFER_STATE b = yy_create_buffer (f, 10000);
+ yy_switch_to_buffer (b);
+
+ yyparse ();
+
+ fclose (f);
+
+ yy_delete_buffer (b);
+ if (!global)
+ return g_object_new (JS_TYPE_NODE, NULL);
+ priv = JS_NODE_GET_PRIVATE (global);
+
+ priv->missed = line_missed_semicolon;
+ return global;
+}
+
+GList*
+js_node_get_lines_missed_semicolon (JSNode *node)
+{
+ JSNodePrivate *priv = JS_NODE_GET_PRIVATE (node);
+ return priv->missed;
+}
+
diff --git a/plugins/language-support-js/js-node.h b/plugins/language-support-js/js-node.h
deleted file mode 120000
index e832967..0000000
--- a/plugins/language-support-js/js-node.h
+++ /dev/null
@@ -1 +0,0 @@
-../symbol-db/anjuta-tags/js-parser/js-node.h
\ No newline at end of file
diff --git a/plugins/language-support-js/js-node.h b/plugins/language-support-js/js-node.h
new file mode 100644
index 0000000..228b0a7
--- /dev/null
+++ b/plugins/language-support-js/js-node.h
@@ -0,0 +1,92 @@
+/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 4; tab-width: 4 -*- */
+/*
+ Copyright (C) 2009 Maxim Ermilov <zaspire rambler ru>
+
+ 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 of the License, 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
+ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+*/
+
+#ifndef _JS_NODE_H_
+#define _JS_NODE_H_
+
+#include <glib-object.h>
+
+#include "jstypes.h"
+
+G_BEGIN_DECLS
+
+#define JS_TYPE_NODE (js_node_get_type ())
+#define JS_NODE(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), JS_TYPE_NODE, JSNode))
+#define JS_NODE_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), JS_TYPE_NODE, JSNodeClass))
+#define JS_IS_NODE(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), JS_TYPE_NODE))
+#define JS_IS_NODE_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), JS_TYPE_NODE))
+#define JS_NODE_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), JS_TYPE_NODE, JSNodeClass))
+
+typedef struct _JSNodeClass JSNodeClass;
+typedef struct _JSNode JSNode;
+
+struct _JSNodeClass
+{
+ GObjectClass parent_class;
+};
+
+struct _JSNode
+{
+ GObject parent_instance;
+
+ int pn_type;
+ int pn_op;
+ int pn_arity;
+ JSTokenPos pn_pos;
+ union {
+ struct { /* TOK_FUNCTION node */
+ JSNode *body;
+ JSNode *name;
+ JSNode *args;
+ } func;
+ struct { /* list of next-linked nodes */
+ JSNode *head;
+ } list;
+ struct { /* ternary: if, for(;;), ?: */
+ char dummy;
+ } ternary;
+ struct { /* two kids if binary */
+ JSNode *left;
+ JSNode *right;
+ } binary;
+ struct { /* one kid if unary */
+ JSNode *kid;
+ } unary;
+ struct { /* name, labeled statement, etc. */
+ JSNode *expr;
+ void *name;
+ char isconst;
+ } name;
+ struct {
+ char dummy;
+ } apair;
+ } pn_u;
+ JSNode *pn_next;
+};
+
+GType js_node_get_type (void) G_GNUC_CONST;
+gchar* js_node_get_name (JSNode *node);
+JSNode* js_node_new_from_file (const gchar *name);
+GList* js_node_get_list_member_from_rc (JSNode* node);
+JSNode* js_node_get_member_from_rc (JSNode* node, const gchar *mname);
+GList* js_node_get_lines_missed_semicolon (JSNode *node);
+
+G_END_DECLS
+
+#endif /* _JS_NODE_H_ */
diff --git a/plugins/language-support-js/js-parser-y-tab.c b/plugins/language-support-js/js-parser-y-tab.c
deleted file mode 120000
index 24bba6d..0000000
--- a/plugins/language-support-js/js-parser-y-tab.c
+++ /dev/null
@@ -1 +0,0 @@
-../symbol-db/anjuta-tags/js-parser/js-parser-y-tab.c
\ No newline at end of file
diff --git a/plugins/language-support-js/js-parser-y-tab.c b/plugins/language-support-js/js-parser-y-tab.c
new file mode 100644
index 0000000..707e47d
--- /dev/null
+++ b/plugins/language-support-js/js-parser-y-tab.c
@@ -0,0 +1,4643 @@
+
+/* A Bison parser, made by GNU Bison 2.4.1. */
+
+/* Skeleton implementation for Bison's Yacc-like parsers in C
+
+ Copyright (C) 1984, 1989, 1990, 2000, 2001, 2002, 2003, 2004, 2005, 2006
+ Free Software Foundation, Inc.
+
+ 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 3 of the License, 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, see <http://www.gnu.org/licenses/>. */
+
+/* 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. */
+
+/* C LALR(1) parser skeleton written by Richard Stallman, by
+ simplifying the original so-called "semantic" parser. */
+
+/* All symbols defined below should begin with yy or YY, to avoid
+ infringing on user name space. This should be done even for local
+ variables, as they might otherwise be expanded by user macros.
+ There are some unavoidable exceptions within include files to
+ define necessary library symbols; they are noted "INFRINGES ON
+ USER NAME SPACE" below. */
+
+/* Identify Bison output. */
+#define YYBISON 1
+
+/* Bison version. */
+#define YYBISON_VERSION "2.4.1"
+
+/* Skeleton name. */
+#define YYSKELETON_NAME "yacc.c"
+
+/* Pure parsers. */
+#define YYPURE 1
+
+/* Push parsers. */
+#define YYPUSH 1
+
+/* Pull parsers. */
+#define YYPULL 1
+
+/* Using locations. */
+#define YYLSP_NEEDED 0
+
+
+
+/* Copy the first part of user declarations. */
+
+/* Line 189 of yacc.c */
+#line 3 "./js-parser/Grammar.y"
+
+
+/*
+ * Copyright (C) 1999-2000 Harri Porten (porten kde org)
+ * Copyright (C) 2006, 2007, 2008, 2009 Apple Inc. All rights reserved.
+ * Copyright (C) 2007 Eric Seidel <eric webkit org>
+ * Copyright (C) 2009 Maxim Ermilov <zaspire rambler ru>
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2 of the License, or (at your option) any later version.
+ *
+ * This library 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
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ *
+ */
+
+#include <string.h>
+#include <stdlib.h>
+#include <stdio.h>
+
+#include <glib.h>
+
+#include "jstypes.h"
+#include "js-node.h"
+#define YYMAXDEPTH 10000
+#define YYENABLE_NLS 0
+
+/* default values for bison */
+
+void yyerror (char* msg);
+int yylex(void *a);
+
+#define YYERROR_VERBOSE 1 // SHOW NORMAL ERROR MESSAGE
+#define YYDEBUG 1 // Set to 1 to debug a parse error.
+#define jscyydebug 1 // Set to 1 to debug a parse error.
+
+JSNode *global = NULL;
+GList *line_missed_semicolon = NULL;
+
+static JSNode*
+node_new (int type, int arity)
+{
+ JSNode *node = g_object_new (JS_TYPE_NODE, NULL);
+ node->pn_type = type;
+ node->pn_arity = arity;
+
+ return node;
+}
+
+static void
+node_correct_position (JSNode *self, JSNode *inner)
+{
+ if (!self)
+ return;
+ if (!inner)
+ return;
+ if (!self->pn_pos.begin)
+ self->pn_pos.begin = inner->pn_pos.begin;
+ if (!self->pn_pos.end)
+ self->pn_pos.end = inner->pn_pos.end;
+ if (inner->pn_pos.begin && self->pn_pos.begin > inner->pn_pos.begin)
+ self->pn_pos.begin = inner->pn_pos.begin;
+ if (self->pn_pos.end < inner->pn_pos.end)
+ self->pn_pos.end = inner->pn_pos.end;
+}
+
+static int
+node_get_line (JSNode *self)
+{
+ if (!self)
+ return 0;
+ return self->pn_pos.end;
+}
+
+static void
+node_correct_position_end (JSNode *self, int end)
+{
+ if (!self->pn_pos.begin)
+ self->pn_pos.begin = end;
+ if (self->pn_pos.end < end)
+ self->pn_pos.end = end;
+}
+
+static void
+AUTO_SEMICOLON (int line)
+{
+ line_missed_semicolon = g_list_append (line_missed_semicolon, GINT_TO_POINTER (line));
+}
+
+#define PRINT_LINE /*printf("%s(%d)\n", __FILE__ , __LINE__)*/
+#define PRINT_LINE_TODO /*printf("TODO:%s(%d)\n", __FILE__ , __LINE__)*/
+#define PRINT_LINE_NOTNEED /*printf("NOTNEED:%s(%d)\n", __FILE__ , __LINE__)*/
+
+//#define YYPARSE_PARAM globalPtr
+//#define YYLEX_PARAM globalPtr
+
+
+
+/* Line 189 of yacc.c */
+#line 180 "./js-parser/js-parser-y-tab.c"
+
+/* Enabling traces. */
+#ifndef YYDEBUG
+# define YYDEBUG 0
+#endif
+
+/* Enabling verbose error messages. */
+#ifdef YYERROR_VERBOSE
+# undef YYERROR_VERBOSE
+# define YYERROR_VERBOSE 1
+#else
+# define YYERROR_VERBOSE 0
+#endif
+
+/* Enabling the token table. */
+#ifndef YYTOKEN_TABLE
+# define YYTOKEN_TABLE 0
+#endif
+
+
+/* Tokens. */
+#ifndef YYTOKENTYPE
+# define YYTOKENTYPE
+ /* Put the tokens into the symbol table, so that GDB and other debuggers
+ know about them. */
+ enum yytokentype {
+ NULLTOKEN = 258,
+ TRUETOKEN = 259,
+ FALSETOKEN = 260,
+ BREAK = 261,
+ CASE = 262,
+ DEFAULT = 263,
+ FOR = 264,
+ NEW = 265,
+ VAR = 266,
+ CONSTTOKEN = 267,
+ CONTINUE = 268,
+ FUNCTION = 269,
+ RETURN = 270,
+ VOIDTOKEN = 271,
+ DELETETOKEN = 272,
+ IF = 273,
+ THISTOKEN = 274,
+ DO = 275,
+ WHILE = 276,
+ INTOKEN = 277,
+ INSTANCEOF = 278,
+ TYPEOF = 279,
+ SWITCH = 280,
+ WITH = 281,
+ RESERVED = 282,
+ THROW = 283,
+ TRY = 284,
+ CATCH = 285,
+ FINALLY = 286,
+ DEBUGGER = 287,
+ IF_WITHOUT_ELSE = 288,
+ ELSE = 289,
+ EQEQ = 290,
+ NE = 291,
+ STREQ = 292,
+ STRNEQ = 293,
+ LE = 294,
+ GE = 295,
+ OR = 296,
+ AND = 297,
+ PLUSPLUS = 298,
+ MINUSMINUS = 299,
+ LSHIFT = 300,
+ RSHIFT = 301,
+ URSHIFT = 302,
+ PLUSEQUAL = 303,
+ MINUSEQUAL = 304,
+ MULTEQUAL = 305,
+ DIVEQUAL = 306,
+ LSHIFTEQUAL = 307,
+ RSHIFTEQUAL = 308,
+ URSHIFTEQUAL = 309,
+ ANDEQUAL = 310,
+ MODEQUAL = 311,
+ XOREQUAL = 312,
+ OREQUAL = 313,
+ OPENBRACE = 314,
+ CLOSEBRACE = 315,
+ IDENT_IN = 316,
+ NUMBER = 317,
+ STRING = 318,
+ AUTOPLUSPLUS = 319,
+ AUTOMINUSMINUS = 320
+ };
+#endif
+
+
+
+#if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
+typedef union YYSTYPE
+{
+
+/* Line 214 of yacc.c */
+#line 109 "./js-parser/Grammar.y"
+
+ int intValue;
+ JSNode* node;
+ struct {
+ char *iname;
+ JSTokenPos pos;
+ } name;
+
+
+
+/* Line 214 of yacc.c */
+#line 292 "./js-parser/js-parser-y-tab.c"
+} YYSTYPE;
+# define YYSTYPE_IS_TRIVIAL 1
+# define yystype YYSTYPE /* obsolescent; will be withdrawn */
+# define YYSTYPE_IS_DECLARED 1
+#endif
+
+#ifndef YYPUSH_DECLS
+# define YYPUSH_DECLS
+struct yypstate;
+typedef struct yypstate yypstate;
+enum { YYPUSH_MORE = 4 };
+
+#if defined __STDC__ || defined __cplusplus
+int yyparse (void);
+#else
+int yyparse ();
+#endif
+#if defined __STDC__ || defined __cplusplus
+int yypush_parse (yypstate *yyps, int yypushed_char, YYSTYPE const *yypushed_val);
+#else
+int yypush_parse ();
+#endif
+#if defined __STDC__ || defined __cplusplus
+int yypull_parse (yypstate *yyps);
+#else
+int yypull_parse ();
+#endif
+#if defined __STDC__ || defined __cplusplus
+yypstate * yypstate_new (void);
+#else
+yypstate * yypstate_new ();
+#endif
+#if defined __STDC__ || defined __cplusplus
+void yypstate_delete (yypstate *yyps);
+#else
+void yypstate_delete ();
+#endif
+#endif
+
+
+/* Copy the second part of user declarations. */
+
+
+/* Line 264 of yacc.c */
+#line 337 "./js-parser/js-parser-y-tab.c"
+
+#ifdef short
+# undef short
+#endif
+
+#ifdef YYTYPE_UINT8
+typedef YYTYPE_UINT8 yytype_uint8;
+#else
+typedef unsigned char yytype_uint8;
+#endif
+
+#ifdef YYTYPE_INT8
+typedef YYTYPE_INT8 yytype_int8;
+#elif (defined __STDC__ || defined __C99__FUNC__ \
+ || defined __cplusplus || defined _MSC_VER)
+typedef signed char yytype_int8;
+#else
+typedef short int yytype_int8;
+#endif
+
+#ifdef YYTYPE_UINT16
+typedef YYTYPE_UINT16 yytype_uint16;
+#else
+typedef unsigned short int yytype_uint16;
+#endif
+
+#ifdef YYTYPE_INT16
+typedef YYTYPE_INT16 yytype_int16;
+#else
+typedef short int yytype_int16;
+#endif
+
+#ifndef YYSIZE_T
+# ifdef __SIZE_TYPE__
+# define YYSIZE_T __SIZE_TYPE__
+# elif defined size_t
+# define YYSIZE_T size_t
+# elif ! defined YYSIZE_T && (defined __STDC__ || defined __C99__FUNC__ \
+ || defined __cplusplus || defined _MSC_VER)
+# include <stddef.h> /* INFRINGES ON USER NAME SPACE */
+# define YYSIZE_T size_t
+# else
+# define YYSIZE_T unsigned int
+# endif
+#endif
+
+#define YYSIZE_MAXIMUM ((YYSIZE_T) -1)
+
+#ifndef YY_
+# if YYENABLE_NLS
+# if ENABLE_NLS
+# include <libintl.h> /* INFRINGES ON USER NAME SPACE */
+# define YY_(msgid) dgettext ("bison-runtime", msgid)
+# endif
+# endif
+# ifndef YY_
+# define YY_(msgid) msgid
+# endif
+#endif
+
+/* Suppress unused-variable warnings by "using" E. */
+#if ! defined lint || defined __GNUC__
+# define YYUSE(e) ((void) (e))
+#else
+# define YYUSE(e) /* empty */
+#endif
+
+/* Identity function, used to suppress warnings about constant conditions. */
+#ifndef lint
+# define YYID(n) (n)
+#else
+#if (defined __STDC__ || defined __C99__FUNC__ \
+ || defined __cplusplus || defined _MSC_VER)
+static int
+YYID (int yyi)
+#else
+static int
+YYID (yyi)
+ int yyi;
+#endif
+{
+ return yyi;
+}
+#endif
+
+#if ! defined yyoverflow || YYERROR_VERBOSE
+
+# ifdef YYSTACK_ALLOC
+ /* Pacify GCC's `empty if-body' warning. */
+# define YYSTACK_FREE(Ptr) do { /* empty */; } while (YYID (0))
+# ifndef YYSTACK_ALLOC_MAXIMUM
+ /* The OS might guarantee only one guard page at the bottom of the stack,
+ and a page size can be as small as 4096 bytes. So we cannot safely
+ invoke alloca (N) if N exceeds 4096. Use a slightly smaller number
+ to allow for a few compiler-allocated temporary stack slots. */
+# define YYSTACK_ALLOC_MAXIMUM 4032 /* reasonable circa 2006 */
+# endif
+# else
+# define YYSTACK_ALLOC YYMALLOC
+# define YYSTACK_FREE YYFREE
+# ifndef YYSTACK_ALLOC_MAXIMUM
+# define YYSTACK_ALLOC_MAXIMUM YYSIZE_MAXIMUM
+# endif
+# if (defined __cplusplus && ! defined _STDLIB_H \
+ && ! ((defined YYMALLOC || defined malloc) \
+ && (defined YYFREE || defined free)))
+# include <stdlib.h> /* INFRINGES ON USER NAME SPACE */
+# ifndef _STDLIB_H
+# define _STDLIB_H 1
+# endif
+# endif
+# ifndef YYMALLOC
+# define YYMALLOC malloc
+# if ! defined malloc && ! defined _STDLIB_H && (defined __STDC__ || defined __C99__FUNC__ \
+ || defined __cplusplus || defined _MSC_VER)
+void *malloc (YYSIZE_T); /* INFRINGES ON USER NAME SPACE */
+# endif
+# endif
+# ifndef YYFREE
+# define YYFREE free
+# if ! defined free && ! defined _STDLIB_H && (defined __STDC__ || defined __C99__FUNC__ \
+ || defined __cplusplus || defined _MSC_VER)
+void free (void *); /* INFRINGES ON USER NAME SPACE */
+# endif
+# endif
+# endif
+#endif /* ! defined yyoverflow || YYERROR_VERBOSE */
+
+
+#if (! defined yyoverflow \
+ && (! defined __cplusplus \
+ || (defined YYSTYPE_IS_TRIVIAL && YYSTYPE_IS_TRIVIAL)))
+
+/* A type that is properly aligned for any stack member. */
+union yyalloc
+{
+ yytype_int16 yyss_alloc;
+ YYSTYPE yyvs_alloc;
+};
+
+/* The size of the maximum gap between one aligned stack and the next. */
+# define YYSTACK_GAP_MAXIMUM (sizeof (union yyalloc) - 1)
+
+/* The size of an array large to enough to hold all stacks, each with
+ N elements. */
+# define YYSTACK_BYTES(N) \
+ ((N) * (sizeof (yytype_int16) + sizeof (YYSTYPE)) \
+ + YYSTACK_GAP_MAXIMUM)
+
+/* Copy COUNT objects from FROM to TO. The source and destination do
+ not overlap. */
+# ifndef YYCOPY
+# if defined __GNUC__ && 1 < __GNUC__
+# define YYCOPY(To, From, Count) \
+ __builtin_memcpy (To, From, (Count) * sizeof (*(From)))
+# else
+# define YYCOPY(To, From, Count) \
+ do \
+ { \
+ YYSIZE_T yyi; \
+ for (yyi = 0; yyi < (Count); yyi++) \
+ (To)[yyi] = (From)[yyi]; \
+ } \
+ while (YYID (0))
+# endif
+# endif
+
+/* Relocate STACK from its old location to the new one. The
+ local variables YYSIZE and YYSTACKSIZE give the old and new number of
+ elements in the stack, and YYPTR gives the new location of the
+ stack. Advance YYPTR to a properly aligned location for the next
+ stack. */
+# define YYSTACK_RELOCATE(Stack_alloc, Stack) \
+ do \
+ { \
+ YYSIZE_T yynewbytes; \
+ YYCOPY (&yyptr->Stack_alloc, Stack, yysize); \
+ Stack = &yyptr->Stack_alloc; \
+ yynewbytes = yystacksize * sizeof (*Stack) + YYSTACK_GAP_MAXIMUM; \
+ yyptr += yynewbytes / sizeof (*yyptr); \
+ } \
+ while (YYID (0))
+
+#endif
+
+/* YYFINAL -- State number of the termination state. */
+#define YYFINAL 207
+/* YYLAST -- Last index in YYTABLE. */
+#define YYLAST 1389
+
+/* YYNTOKENS -- Number of terminals. */
+#define YYNTOKENS 92
+/* YYNNTS -- Number of nonterminals. */
+#define YYNNTS 110
+/* YYNRULES -- Number of rules. */
+#define YYNRULES 335
+/* YYNRULES -- Number of states. */
+#define YYNSTATES 599
+
+/* YYTRANSLATE(YYLEX) -- Bison symbol number corresponding to YYLEX. */
+#define YYUNDEFTOK 2
+#define YYMAXUTOK 320
+
+#define YYTRANSLATE(YYX) \
+ ((unsigned int) (YYX) <= YYMAXUTOK ? yytranslate[YYX] : YYUNDEFTOK)
+
+/* YYTRANSLATE[YYLEX] -- Bison symbol number corresponding to YYLEX. */
+static const yytype_uint8 yytranslate[] =
+{
+ 0, 2, 2, 2, 2, 2, 2, 2, 2, 2,
+ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
+ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
+ 2, 2, 2, 82, 2, 2, 69, 87, 90, 2,
+ 78, 79, 71, 72, 75, 85, 76, 67, 2, 2,
+ 2, 2, 2, 2, 2, 2, 2, 2, 80, 91,
+ 88, 81, 89, 70, 2, 2, 2, 2, 2, 2,
+ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
+ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
+ 2, 83, 77, 84, 68, 2, 2, 2, 2, 2,
+ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
+ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
+ 2, 2, 2, 73, 66, 74, 86, 2, 2, 2,
+ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
+ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
+ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
+ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
+ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
+ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
+ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
+ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
+ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
+ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
+ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
+ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
+ 2, 2, 2, 2, 2, 2, 1, 2, 3, 4,
+ 5, 6, 7, 8, 9, 10, 11, 12, 13, 14,
+ 15, 16, 17, 18, 19, 20, 21, 22, 23, 24,
+ 25, 26, 27, 28, 29, 30, 31, 32, 33, 34,
+ 35, 36, 37, 38, 39, 40, 41, 42, 43, 44,
+ 45, 46, 47, 48, 49, 50, 51, 52, 53, 54,
+ 55, 56, 57, 58, 59, 60, 61, 62, 63, 64,
+ 65
+};
+
+#if YYDEBUG
+/* YYPRHS[YYN] -- Index of the first RHS symbol of rule number YYN in
+ YYRHS. */
+static const yytype_uint16 yyprhs[] =
+{
+ 0, 0, 3, 5, 7, 11, 15, 20, 21, 24,
+ 26, 28, 31, 33, 35, 37, 40, 42, 44, 46,
+ 50, 55, 61, 63, 65, 68, 71, 73, 77, 83,
+ 89, 95, 97, 101, 106, 108, 110, 114, 117, 119,
+ 121, 123, 125, 127, 131, 135, 139, 147, 156, 158,
+ 162, 164, 167, 171, 176, 178, 180, 182, 184, 188,
+ 192, 196, 202, 205, 210, 211, 213, 215, 218, 220,
+ 222, 224, 229, 233, 237, 239, 244, 248, 252, 254,
+ 257, 259, 262, 265, 268, 273, 277, 280, 283, 288,
+ 292, 295, 299, 301, 305, 307, 309, 311, 313, 315,
+ 318, 321, 323, 326, 329, 332, 335, 338, 341, 344,
+ 347, 350, 353, 356, 359, 362, 364, 366, 368, 370,
+ 372, 376, 380, 384, 386, 390, 394, 398, 400, 404,
+ 408, 410, 414, 418, 420, 424, 428, 432, 434, 438,
+ 442, 446, 448, 452, 456, 460, 464, 468, 472, 474,
+ 478, 482, 486, 490, 494, 496, 500, 504, 508, 512,
+ 516, 520, 522, 526, 530, 534, 538, 540, 544, 548,
+ 552, 556, 558, 562, 566, 570, 574, 576, 580, 582,
+ 586, 588, 592, 594, 598, 600, 604, 606, 610, 612,
+ 616, 618, 622, 624, 628, 630, 634, 636, 640, 642,
+ 646, 648, 652, 654, 658, 660, 664, 666, 672, 674,
+ 680, 682, 688, 690, 694, 696, 700, 702, 706, 708,
+ 710, 712, 714, 716, 718, 720, 722, 724, 726, 728,
+ 730, 732, 736, 738, 742, 744, 748, 750, 752, 754,
+ 756, 758, 760, 762, 764, 766, 768, 770, 772, 774,
+ 776, 778, 780, 782, 785, 789, 793, 797, 799, 802,
+ 806, 811, 813, 816, 820, 825, 829, 833, 835, 839,
+ 841, 844, 847, 850, 852, 855, 858, 864, 872, 880,
+ 888, 894, 904, 915, 923, 932, 942, 943, 945, 946,
+ 948, 951, 954, 958, 962, 965, 968, 972, 976, 979,
+ 982, 986, 990, 996, 1002, 1006, 1012, 1013, 1015, 1017,
+ 1020, 1024, 1029, 1032, 1036, 1040, 1044, 1048, 1053, 1061,
+ 1071, 1074, 1077, 1085, 1094, 1101, 1109, 1117, 1126, 1128,
+ 1132, 1133, 1135, 1136, 1138, 1140
+};
+
+/* YYRHS -- A `-1'-separated list of the rules' RHS. */
+static const yytype_int16 yyrhs[] =
+{
+ 200, 0, -1, 61, -1, 96, -1, 96, 66, 94,
+ -1, 67, 94, 67, -1, 67, 94, 67, 93, -1,
+ -1, 96, 97, -1, 98, -1, 101, -1, 101, 99,
+ -1, 68, -1, 69, -1, 100, -1, 100, 70, -1,
+ 71, -1, 72, -1, 70, -1, 73, 62, 74, -1,
+ 73, 62, 75, 74, -1, 73, 62, 75, 62, 74,
+ -1, 102, -1, 76, -1, 77, 93, -1, 77, 76,
+ -1, 103, -1, 78, 94, 79, -1, 78, 70, 80,
+ 94, 79, -1, 78, 70, 81, 94, 79, -1, 78,
+ 70, 82, 94, 79, -1, 93, -1, 83, 104, 84,
+ -1, 83, 68, 104, 84, -1, 62, -1, 93, -1,
+ 104, 85, 104, -1, 104, 104, -1, 3, -1, 4,
+ -1, 5, -1, 62, -1, 63, -1, 93, 80, 159,
+ -1, 63, 80, 159, -1, 62, 80, 159, -1, 93,
+ 93, 78, 79, 59, 199, 60, -1, 93, 93, 78,
+ 198, 79, 59, 199, 60, -1, 106, -1, 107, 75,
+ 106, -1, 109, -1, 59, 60, -1, 59, 107, 60,
+ -1, 59, 107, 75, 60, -1, 19, -1, 105, -1,
+ 110, -1, 93, -1, 78, 163, 79, -1, 83, 112,
+ 84, -1, 83, 111, 84, -1, 83, 111, 75, 112,
+ 84, -1, 112, 159, -1, 111, 75, 112, 159, -1,
+ -1, 113, -1, 75, -1, 113, 75, -1, 108, -1,
+ 95, -1, 197, -1, 114, 83, 163, 84, -1, 114,
+ 76, 93, -1, 10, 114, 120, -1, 109, -1, 115,
+ 83, 163, 84, -1, 115, 76, 93, -1, 10, 114,
+ 120, -1, 114, -1, 10, 116, -1, 115, -1, 10,
+ 116, -1, 114, 120, -1, 118, 120, -1, 118, 83,
+ 163, 84, -1, 118, 76, 93, -1, 115, 120, -1,
+ 119, 120, -1, 119, 83, 163, 84, -1, 119, 76,
+ 93, -1, 78, 79, -1, 78, 121, 79, -1, 159,
+ -1, 121, 75, 159, -1, 116, -1, 118, -1, 117,
+ -1, 119, -1, 122, -1, 122, 43, -1, 122, 44,
+ -1, 123, -1, 123, 43, -1, 123, 44, -1, 17,
+ 127, -1, 16, 127, -1, 24, 127, -1, 43, 127,
+ -1, 64, 127, -1, 44, 127, -1, 65, 127, -1,
+ 72, 127, -1, 85, 127, -1, 86, 127, -1, 82,
+ 127, -1, 124, -1, 126, -1, 125, -1, 126, -1,
+ 127, -1, 129, 71, 127, -1, 129, 67, 127, -1,
+ 129, 87, 127, -1, 128, -1, 130, 71, 127, -1,
+ 130, 67, 127, -1, 130, 87, 127, -1, 129, -1,
+ 131, 72, 129, -1, 131, 85, 129, -1, 130, -1,
+ 132, 72, 129, -1, 132, 85, 129, -1, 131, -1,
+ 133, 45, 131, -1, 133, 46, 131, -1, 133, 47,
+ 131, -1, 132, -1, 134, 45, 131, -1, 134, 46,
+ 131, -1, 134, 47, 131, -1, 133, -1, 135, 88,
+ 133, -1, 135, 89, 133, -1, 135, 39, 133, -1,
+ 135, 40, 133, -1, 135, 23, 133, -1, 135, 22,
+ 133, -1, 133, -1, 136, 88, 133, -1, 136, 89,
+ 133, -1, 136, 39, 133, -1, 136, 40, 133, -1,
+ 136, 23, 133, -1, 134, -1, 137, 88, 133, -1,
+ 137, 89, 133, -1, 137, 39, 133, -1, 137, 40,
+ 133, -1, 137, 23, 133, -1, 137, 22, 133, -1,
+ 135, -1, 138, 35, 135, -1, 138, 36, 135, -1,
+ 138, 37, 135, -1, 138, 38, 135, -1, 136, -1,
+ 139, 35, 136, -1, 139, 36, 136, -1, 139, 37,
+ 136, -1, 139, 38, 136, -1, 137, -1, 140, 35,
+ 135, -1, 140, 36, 135, -1, 140, 37, 135, -1,
+ 140, 38, 135, -1, 138, -1, 141, 90, 138, -1,
+ 139, -1, 142, 90, 139, -1, 140, -1, 143, 90,
+ 138, -1, 141, -1, 144, 68, 141, -1, 142, -1,
+ 145, 68, 142, -1, 143, -1, 146, 68, 141, -1,
+ 144, -1, 147, 66, 144, -1, 145, -1, 148, 66,
+ 145, -1, 146, -1, 149, 66, 144, -1, 147, -1,
+ 150, 42, 147, -1, 148, -1, 151, 42, 148, -1,
+ 149, -1, 152, 42, 147, -1, 150, -1, 153, 41,
+ 150, -1, 151, -1, 154, 41, 151, -1, 152, -1,
+ 155, 41, 150, -1, 153, -1, 153, 70, 159, 80,
+ 159, -1, 154, -1, 154, 70, 160, 80, 160, -1,
+ 155, -1, 155, 70, 159, 80, 159, -1, 156, -1,
+ 122, 162, 159, -1, 157, -1, 122, 162, 160, -1,
+ 158, -1, 123, 162, 159, -1, 81, -1, 48, -1,
+ 49, -1, 50, -1, 51, -1, 52, -1, 53, -1,
+ 54, -1, 55, -1, 57, -1, 58, -1, 56, -1,
+ 159, -1, 163, 75, 159, -1, 160, -1, 164, 75,
+ 160, -1, 161, -1, 165, 75, 159, -1, 167, -1,
+ 168, -1, 171, -1, 196, -1, 176, -1, 177, -1,
+ 178, -1, 179, -1, 182, -1, 183, -1, 184, -1,
+ 185, -1, 186, -1, 192, -1, 193, -1, 194, -1,
+ 195, -1, 59, 60, -1, 59, 201, 60, -1, 11,
+ 169, 91, -1, 11, 169, 1, -1, 93, -1, 93,
+ 174, -1, 169, 75, 93, -1, 169, 75, 93, 174,
+ -1, 93, -1, 93, 175, -1, 170, 75, 93, -1,
+ 170, 75, 93, 175, -1, 12, 172, 91, -1, 12,
+ 172, 1, -1, 173, -1, 172, 75, 173, -1, 93,
+ -1, 93, 174, -1, 81, 159, -1, 81, 160, -1,
+ 91, -1, 165, 91, -1, 165, 1, -1, 18, 78,
+ 163, 79, 166, -1, 18, 78, 163, 79, 166, 34,
+ 166, -1, 20, 166, 21, 78, 163, 79, 91, -1,
+ 20, 166, 21, 78, 163, 79, 1, -1, 21, 78,
+ 163, 79, 166, -1, 9, 78, 181, 91, 180, 91,
+ 180, 79, 166, -1, 9, 78, 11, 170, 91, 180,
+ 91, 180, 79, 166, -1, 9, 78, 122, 22, 163,
+ 79, 166, -1, 9, 78, 11, 93, 22, 163, 79,
+ 166, -1, 9, 78, 11, 93, 175, 22, 163, 79,
+ 166, -1, -1, 163, -1, -1, 164, -1, 13, 91,
+ -1, 13, 1, -1, 13, 93, 91, -1, 13, 93,
+ 1, -1, 6, 91, -1, 6, 1, -1, 6, 93,
+ 91, -1, 6, 93, 1, -1, 15, 91, -1, 15,
+ 1, -1, 15, 163, 91, -1, 15, 163, 1, -1,
+ 26, 78, 163, 79, 166, -1, 25, 78, 163, 79,
+ 187, -1, 59, 188, 60, -1, 59, 188, 191, 188,
+ 60, -1, -1, 189, -1, 190, -1, 189, 190, -1,
+ 7, 163, 80, -1, 7, 163, 80, 201, -1, 8,
+ 80, -1, 8, 80, 201, -1, 93, 80, 166, -1,
+ 28, 163, 91, -1, 28, 163, 1, -1, 29, 167,
+ 31, 167, -1, 29, 167, 30, 78, 93, 79, 167,
+ -1, 29, 167, 30, 78, 93, 79, 167, 31, 167,
+ -1, 32, 91, -1, 32, 1, -1, 14, 93, 78,
+ 79, 59, 199, 60, -1, 14, 93, 78, 198, 79,
+ 59, 199, 60, -1, 14, 78, 79, 59, 199, 60,
+ -1, 14, 78, 198, 79, 59, 199, 60, -1, 14,
+ 93, 78, 79, 59, 199, 60, -1, 14, 93, 78,
+ 198, 79, 59, 199, 60, -1, 93, -1, 198, 75,
+ 93, -1, -1, 201, -1, -1, 201, -1, 166, -1,
+ 201, 166, -1
+};
+
+/* YYRLINE[YYN] -- source line where rule number YYN was defined. */
+static const yytype_uint16 yyrline[] =
+{
+ 0, 215, 215, 219, 220, 224, 225, 229, 230, 234,
+ 235, 236, 240, 241, 246, 247, 251, 252, 253, 254,
+ 255, 256, 260, 261, 262, 263, 264, 265, 266, 267,
+ 268, 272, 276, 277, 281, 282, 283, 284, 288, 289,
+ 290, 291, 292, 296, 303, 309, 315, 316, 321, 326,
+ 340, 341, 342, 347, 354, 355, 356, 357, 358, 362,
+ 363, 364, 368, 369, 374, 375, 379, 380, 384, 385,
+ 386, 387, 388, 395, 405, 406, 407, 414, 418, 419,
+ 423, 424, 428, 435, 442, 443, 453, 460, 467, 468,
+ 478, 479, 483, 484, 493, 494, 498, 499, 503, 504,
+ 505, 509, 510, 511, 515, 516, 517, 518, 519, 520,
+ 521, 522, 523, 524, 525, 528, 529, 533, 534, 538,
+ 539, 540, 541, 545, 546, 548, 550, 555, 556, 557,
+ 561, 562, 564, 569, 570, 571, 572, 576, 577, 578,
+ 579, 583, 584, 585, 586, 587, 588, 589, 593, 594,
+ 595, 596, 597, 598, 603, 604, 605, 606, 607, 608,
+ 610, 615, 616, 617, 618, 619, 623, 624, 626, 628,
+ 630, 635, 636, 638, 639, 641, 646, 647, 651, 652,
+ 657, 658, 662, 663, 667, 668, 673, 674, 679, 680,
+ 684, 685, 690, 691, 696, 697, 701, 702, 707, 708,
+ 713, 714, 718, 719, 724, 725, 729, 730, 735, 736,
+ 741, 742, 747, 748, 759, 760, 771, 772, 783, 784,
+ 785, 786, 787, 788, 789, 790, 791, 792, 793, 794,
+ 798, 799, 803, 804, 808, 809, 813, 814, 815, 816,
+ 817, 818, 819, 820, 821, 822, 823, 824, 825, 826,
+ 827, 828, 829, 833, 838, 847, 848, 852, 857, 864,
+ 874, 889, 894, 901, 903, 908, 909, 914, 919, 932,
+ 933, 941, 945, 949, 953, 954, 958, 960, 965, 966,
+ 967, 968, 970, 972, 974, 976, 981, 982, 986, 987,
+ 991, 992, 993, 994, 998, 999, 1000, 1001, 1005, 1006,
+ 1007, 1012, 1021, 1025, 1029, 1030, 1035, 1036, 1040, 1041,
+ 1045, 1046, 1050, 1051, 1055, 1059, 1060, 1064, 1065, 1066,
+ 1071, 1072, 1076, 1085, 1099, 1107, 1117, 1126, 1140, 1145,
+ 1159, 1160, 1164, 1165, 1169, 1174
+};
+#endif
+
+#if YYDEBUG || YYERROR_VERBOSE || YYTOKEN_TABLE
+/* YYTNAME[SYMBOL-NUM] -- String name of the symbol SYMBOL-NUM.
+ First, the terminals, then, starting at YYNTOKENS, nonterminals. */
+static const char *const yytname[] =
+{
+ "$end", "error", "$undefined", "NULLTOKEN", "TRUETOKEN", "FALSETOKEN",
+ "BREAK", "CASE", "DEFAULT", "FOR", "NEW", "VAR", "CONSTTOKEN",
+ "CONTINUE", "FUNCTION", "RETURN", "VOIDTOKEN", "DELETETOKEN", "IF",
+ "THISTOKEN", "DO", "WHILE", "INTOKEN", "INSTANCEOF", "TYPEOF", "SWITCH",
+ "WITH", "RESERVED", "THROW", "TRY", "CATCH", "FINALLY", "DEBUGGER",
+ "IF_WITHOUT_ELSE", "ELSE", "EQEQ", "NE", "STREQ", "STRNEQ", "LE", "GE",
+ "OR", "AND", "PLUSPLUS", "MINUSMINUS", "LSHIFT", "RSHIFT", "URSHIFT",
+ "PLUSEQUAL", "MINUSEQUAL", "MULTEQUAL", "DIVEQUAL", "LSHIFTEQUAL",
+ "RSHIFTEQUAL", "URSHIFTEQUAL", "ANDEQUAL", "MODEQUAL", "XOREQUAL",
+ "OREQUAL", "OPENBRACE", "CLOSEBRACE", "IDENT_IN", "NUMBER", "STRING",
+ "AUTOPLUSPLUS", "AUTOMINUSMINUS", "'|'", "'/'", "'^'", "'$'", "'?'",
+ "'*'", "'+'", "'{'", "'}'", "','", "'.'", "'\\\\'", "'('", "')'", "':'",
+ "'='", "'!'", "'['", "']'", "'-'", "'~'", "'%'", "'<'", "'>'", "'&'",
+ "';'", "$accept", "IDENT", "Disjunction", "RegExp", "Alternative",
+ "Term", "Assertion", "Quantifier", "QuantifierPrefix", "RAtom",
+ "PatternCharacter", "CharacterClass", "ClassRanges", "Literal",
+ "Property", "PropertyList", "PrimaryExpr", "PrimaryExprNoBrace",
+ "ArrayLiteral", "ElementList", "ElisionOpt", "Elision", "MemberExpr",
+ "MemberExprNoBF", "NewExpr", "NewExprNoBF", "CallExpr", "CallExprNoBF",
+ "Arguments", "ArgumentList", "LeftHandSideExpr", "LeftHandSideExprNoBF",
+ "PostfixExpr", "PostfixExprNoBF", "UnaryExprCommon", "UnaryExpr",
+ "UnaryExprNoBF", "MultiplicativeExpr", "MultiplicativeExprNoBF",
+ "AdditiveExpr", "AdditiveExprNoBF", "ShiftExpr", "ShiftExprNoBF",
+ "RelationalExpr", "RelationalExprNoIn", "RelationalExprNoBF",
+ "EqualityExpr", "EqualityExprNoIn", "EqualityExprNoBF", "BitwiseANDExpr",
+ "BitwiseANDExprNoIn", "BitwiseANDExprNoBF", "BitwiseXORExpr",
+ "BitwiseXORExprNoIn", "BitwiseXORExprNoBF", "BitwiseORExpr",
+ "BitwiseORExprNoIn", "BitwiseORExprNoBF", "LogicalANDExpr",
+ "LogicalANDExprNoIn", "LogicalANDExprNoBF", "LogicalORExpr",
+ "LogicalORExprNoIn", "LogicalORExprNoBF", "ConditionalExpr",
+ "ConditionalExprNoIn", "ConditionalExprNoBF", "AssignmentExpr",
+ "AssignmentExprNoIn", "AssignmentExprNoBF", "AssignmentOperator", "Expr",
+ "ExprNoIn", "ExprNoBF", "Statement", "Block", "VariableStatement",
+ "VariableDeclarationList", "VariableDeclarationListNoIn",
+ "ConstStatement", "ConstDeclarationList", "ConstDeclaration",
+ "Initializer", "InitializerNoIn", "EmptyStatement", "ExprStatement",
+ "IfStatement", "IterationStatement", "ExprOpt", "ExprNoInOpt",
+ "ContinueStatement", "BreakStatement", "ReturnStatement",
+ "WithStatement", "SwitchStatement", "CaseBlock", "CaseClausesOpt",
+ "CaseClauses", "CaseClause", "DefaultClause", "LabelledStatement",
+ "ThrowStatement", "TryStatement", "DebuggerStatement",
+ "FunctionDeclaration", "FunctionExpr", "FormalParameterList",
+ "FunctionBody", "Program", "SourceElements", 0
+};
+#endif
+
+# ifdef YYPRINT
+/* YYTOKNUM[YYLEX-NUM] -- Internal token number corresponding to
+ token YYLEX-NUM. */
+static const yytype_uint16 yytoknum[] =
+{
+ 0, 256, 257, 258, 259, 260, 261, 262, 263, 264,
+ 265, 266, 267, 268, 269, 270, 271, 272, 273, 274,
+ 275, 276, 277, 278, 279, 280, 281, 282, 283, 284,
+ 285, 286, 287, 288, 289, 290, 291, 292, 293, 294,
+ 295, 296, 297, 298, 299, 300, 301, 302, 303, 304,
+ 305, 306, 307, 308, 309, 310, 311, 312, 313, 314,
+ 315, 316, 317, 318, 319, 320, 124, 47, 94, 36,
+ 63, 42, 43, 123, 125, 44, 46, 92, 40, 41,
+ 58, 61, 33, 91, 93, 45, 126, 37, 60, 62,
+ 38, 59
+};
+# endif
+
+/* YYR1[YYN] -- Symbol number of symbol that rule YYN derives. */
+static const yytype_uint8 yyr1[] =
+{
+ 0, 92, 93, 94, 94, 95, 95, 96, 96, 97,
+ 97, 97, 98, 98, 99, 99, 100, 100, 100, 100,
+ 100, 100, 101, 101, 101, 101, 101, 101, 101, 101,
+ 101, 102, 103, 103, 104, 104, 104, 104, 105, 105,
+ 105, 105, 105, 106, 106, 106, 106, 106, 107, 107,
+ 108, 108, 108, 108, 109, 109, 109, 109, 109, 110,
+ 110, 110, 111, 111, 112, 112, 113, 113, 114, 114,
+ 114, 114, 114, 114, 115, 115, 115, 115, 116, 116,
+ 117, 117, 118, 118, 118, 118, 119, 119, 119, 119,
+ 120, 120, 121, 121, 122, 122, 123, 123, 124, 124,
+ 124, 125, 125, 125, 126, 126, 126, 126, 126, 126,
+ 126, 126, 126, 126, 126, 127, 127, 128, 128, 129,
+ 129, 129, 129, 130, 130, 130, 130, 131, 131, 131,
+ 132, 132, 132, 133, 133, 133, 133, 134, 134, 134,
+ 134, 135, 135, 135, 135, 135, 135, 135, 136, 136,
+ 136, 136, 136, 136, 137, 137, 137, 137, 137, 137,
+ 137, 138, 138, 138, 138, 138, 139, 139, 139, 139,
+ 139, 140, 140, 140, 140, 140, 141, 141, 142, 142,
+ 143, 143, 144, 144, 145, 145, 146, 146, 147, 147,
+ 148, 148, 149, 149, 150, 150, 151, 151, 152, 152,
+ 153, 153, 154, 154, 155, 155, 156, 156, 157, 157,
+ 158, 158, 159, 159, 160, 160, 161, 161, 162, 162,
+ 162, 162, 162, 162, 162, 162, 162, 162, 162, 162,
+ 163, 163, 164, 164, 165, 165, 166, 166, 166, 166,
+ 166, 166, 166, 166, 166, 166, 166, 166, 166, 166,
+ 166, 166, 166, 167, 167, 168, 168, 169, 169, 169,
+ 169, 170, 170, 170, 170, 171, 171, 172, 172, 173,
+ 173, 174, 175, 176, 177, 177, 178, 178, 179, 179,
+ 179, 179, 179, 179, 179, 179, 180, 180, 181, 181,
+ 182, 182, 182, 182, 183, 183, 183, 183, 184, 184,
+ 184, 184, 185, 186, 187, 187, 188, 188, 189, 189,
+ 190, 190, 191, 191, 192, 193, 193, 194, 194, 194,
+ 195, 195, 196, 196, 197, 197, 197, 197, 198, 198,
+ 199, 199, 200, 200, 201, 201
+};
+
+/* YYR2[YYN] -- Number of symbols composing right hand side of rule YYN. */
+static const yytype_uint8 yyr2[] =
+{
+ 0, 2, 1, 1, 3, 3, 4, 0, 2, 1,
+ 1, 2, 1, 1, 1, 2, 1, 1, 1, 3,
+ 4, 5, 1, 1, 2, 2, 1, 3, 5, 5,
+ 5, 1, 3, 4, 1, 1, 3, 2, 1, 1,
+ 1, 1, 1, 3, 3, 3, 7, 8, 1, 3,
+ 1, 2, 3, 4, 1, 1, 1, 1, 3, 3,
+ 3, 5, 2, 4, 0, 1, 1, 2, 1, 1,
+ 1, 4, 3, 3, 1, 4, 3, 3, 1, 2,
+ 1, 2, 2, 2, 4, 3, 2, 2, 4, 3,
+ 2, 3, 1, 3, 1, 1, 1, 1, 1, 2,
+ 2, 1, 2, 2, 2, 2, 2, 2, 2, 2,
+ 2, 2, 2, 2, 2, 1, 1, 1, 1, 1,
+ 3, 3, 3, 1, 3, 3, 3, 1, 3, 3,
+ 1, 3, 3, 1, 3, 3, 3, 1, 3, 3,
+ 3, 1, 3, 3, 3, 3, 3, 3, 1, 3,
+ 3, 3, 3, 3, 1, 3, 3, 3, 3, 3,
+ 3, 1, 3, 3, 3, 3, 1, 3, 3, 3,
+ 3, 1, 3, 3, 3, 3, 1, 3, 1, 3,
+ 1, 3, 1, 3, 1, 3, 1, 3, 1, 3,
+ 1, 3, 1, 3, 1, 3, 1, 3, 1, 3,
+ 1, 3, 1, 3, 1, 3, 1, 5, 1, 5,
+ 1, 5, 1, 3, 1, 3, 1, 3, 1, 1,
+ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
+ 1, 3, 1, 3, 1, 3, 1, 1, 1, 1,
+ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
+ 1, 1, 1, 2, 3, 3, 3, 1, 2, 3,
+ 4, 1, 2, 3, 4, 3, 3, 1, 3, 1,
+ 2, 2, 2, 1, 2, 2, 5, 7, 7, 7,
+ 5, 9, 10, 7, 8, 9, 0, 1, 0, 1,
+ 2, 2, 3, 3, 2, 2, 3, 3, 2, 2,
+ 3, 3, 5, 5, 3, 5, 0, 1, 1, 2,
+ 3, 4, 2, 3, 3, 3, 3, 4, 7, 9,
+ 2, 2, 7, 8, 6, 7, 7, 8, 1, 3,
+ 0, 1, 0, 1, 1, 2
+};
+
+/* YYDEFACT[STATE-NAME] -- Default rule to reduce with in state
+ STATE-NUM when YYTABLE doesn't specify something else to do. Zero
+ means the default is an error. */
+static const yytype_uint16 yydefact[] =
+{
+ 332, 38, 39, 40, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 54, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 2, 41, 42,
+ 0, 0, 0, 0, 0, 64, 0, 0, 273, 57,
+ 55, 74, 56, 80, 96, 97, 101, 117, 118, 123,
+ 130, 137, 154, 171, 180, 186, 192, 198, 204, 210,
+ 216, 234, 0, 334, 236, 237, 238, 240, 241, 242,
+ 243, 244, 245, 246, 247, 248, 249, 250, 251, 252,
+ 239, 0, 333, 295, 294, 0, 288, 0, 0, 0,
+ 7, 57, 69, 68, 50, 78, 81, 70, 257, 0,
+ 269, 0, 267, 291, 290, 0, 0, 299, 298, 78,
+ 94, 95, 98, 115, 116, 119, 127, 133, 141, 161,
+ 176, 182, 188, 194, 200, 206, 212, 230, 0, 98,
+ 105, 104, 0, 0, 0, 106, 0, 0, 0, 0,
+ 321, 320, 107, 109, 253, 0, 108, 110, 111, 0,
+ 114, 66, 0, 0, 65, 112, 113, 0, 0, 0,
+ 0, 86, 0, 0, 87, 102, 103, 219, 220, 221,
+ 222, 223, 224, 225, 226, 229, 227, 228, 218, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 275, 0, 274, 1, 335, 297,
+ 296, 0, 98, 148, 166, 178, 184, 190, 196, 202,
+ 208, 214, 232, 289, 0, 78, 79, 0, 0, 51,
+ 0, 0, 0, 48, 0, 0, 3, 0, 0, 77,
+ 0, 258, 256, 0, 255, 270, 266, 0, 265, 293,
+ 292, 0, 82, 0, 0, 83, 99, 100, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 301, 0, 300, 0, 0, 0, 0,
+ 0, 316, 315, 0, 0, 254, 58, 64, 60, 59,
+ 62, 67, 314, 76, 90, 0, 92, 0, 89, 0,
+ 217, 125, 124, 126, 131, 132, 138, 139, 140, 160,
+ 159, 157, 158, 155, 156, 172, 173, 174, 175, 181,
+ 187, 193, 199, 205, 0, 235, 261, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 286, 73, 0, 328,
+ 0, 0, 0, 0, 0, 0, 52, 0, 5, 7,
+ 12, 13, 23, 0, 7, 0, 31, 8, 9, 10,
+ 22, 26, 72, 0, 271, 259, 268, 0, 0, 85,
+ 0, 213, 121, 120, 122, 128, 129, 134, 135, 136,
+ 147, 146, 144, 145, 142, 143, 162, 163, 164, 165,
+ 177, 183, 189, 195, 201, 0, 231, 0, 0, 0,
+ 0, 0, 0, 317, 0, 0, 91, 75, 88, 0,
+ 0, 0, 262, 0, 286, 0, 98, 215, 153, 151,
+ 152, 149, 150, 167, 168, 169, 170, 179, 185, 191,
+ 197, 203, 0, 233, 287, 0, 330, 0, 0, 0,
+ 0, 45, 44, 43, 0, 53, 49, 6, 4, 25,
+ 24, 0, 0, 34, 0, 35, 0, 18, 16, 17,
+ 0, 11, 14, 71, 260, 330, 0, 84, 0, 276,
+ 0, 280, 306, 303, 302, 0, 61, 63, 93, 211,
+ 0, 272, 0, 263, 0, 0, 0, 286, 0, 331,
+ 329, 330, 330, 0, 0, 0, 7, 7, 7, 27,
+ 0, 32, 0, 37, 0, 15, 0, 330, 207, 0,
+ 0, 0, 0, 307, 308, 0, 0, 0, 264, 286,
+ 283, 209, 0, 324, 0, 0, 330, 330, 0, 0,
+ 0, 0, 33, 36, 19, 0, 322, 0, 277, 279,
+ 278, 0, 0, 304, 306, 309, 318, 284, 0, 0,
+ 0, 325, 326, 0, 0, 330, 28, 29, 30, 0,
+ 20, 323, 310, 312, 0, 0, 285, 0, 281, 327,
+ 46, 0, 21, 311, 313, 305, 319, 282, 47
+};
+
+/* YYDEFGOTO[NTERM-NUM]. */
+static const yytype_int16 yydefgoto[] =
+{
+ -1, 91, 235, 92, 236, 377, 378, 481, 482, 379,
+ 380, 381, 523, 40, 233, 234, 93, 94, 42, 152,
+ 153, 154, 109, 43, 110, 44, 111, 45, 161, 305,
+ 129, 46, 113, 47, 114, 115, 49, 116, 50, 117,
+ 51, 118, 52, 119, 214, 53, 120, 215, 54, 121,
+ 216, 55, 122, 217, 56, 123, 218, 57, 124, 219,
+ 58, 125, 220, 59, 126, 221, 60, 127, 222, 61,
+ 339, 454, 223, 62, 63, 64, 65, 99, 337, 66,
+ 101, 102, 241, 432, 67, 68, 69, 70, 455, 224,
+ 71, 72, 73, 74, 75, 493, 532, 533, 534, 564,
+ 76, 77, 78, 79, 80, 97, 360, 508, 81, 509
+};
+
+/* YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describing
+ STATE-NUM. */
+#define YYPACT_NINF -423
+static const yytype_int16 yypact[] =
+{
+ 1073, -423, -423, -423, 5, -33, 367, -6, -6, 23,
+ -6, 260, 1303, 1303, 16, -423, 1073, 20, 1303, 85,
+ 116, 1303, 137, 18, 1303, 1303, 842, -423, -423, -423,
+ 1303, 1303, 1303, 1303, 1303, 138, 1303, 1303, -423, 175,
+ -423, -423, -423, 218, -423, 219, 440, -423, -423, -423,
+ 10, 114, 312, 150, 368, 151, 190, 209, 230, -21,
+ -423, -423, 12, -423, -423, -423, -423, -423, -423, -423,
+ -423, -423, -423, -423, -423, -423, -423, -423, -423, -423,
+ -423, 282, 1073, -423, -423, 35, 719, 367, 127, 347,
+ -423, -423, -423, -423, -423, 235, -423, -423, 211, 24,
+ 211, 31, -423, -423, -423, 36, 239, -423, -423, 235,
+ -423, 250, 886, -423, -423, -423, 94, 121, 420, 178,
+ 376, 249, 280, 263, 340, 13, -423, -423, 43, 271,
+ -423, -423, 1303, 370, 1303, -423, 1303, 1303, 46, -8,
+ -423, -423, -423, -423, -423, 984, -423, -423, -423, 177,
+ -423, -423, 132, 1104, 290, -423, -423, 1073, -6, 1188,
+ 1303, -423, -6, 1303, -423, -423, -423, -423, -423, -423,
+ -423, -423, -423, -423, -423, -423, -423, -423, -423, 1303,
+ 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303,
+ 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303,
+ 1303, 1303, 1303, 1303, -423, 1303, -423, -423, -423, -423,
+ -423, -6, 344, 420, 19, 402, 325, 348, 352, 378,
+ 78, -423, -423, 356, 332, 235, -423, -18, 349, -423,
+ 355, 366, 25, -423, 135, 365, 286, -6, 1303, -423,
+ 1303, -423, -423, -6, -423, -423, -423, -6, -423, -423,
+ -423, 95, -423, -6, 1303, -423, -423, -423, 1303, 1303,
+ 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303,
+ 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303,
+ 1303, 1303, 1303, -423, 1303, -423, 194, 384, 206, 214,
+ 241, -423, -423, 385, 137, -423, -423, 138, -423, -423,
+ -423, -423, -423, -423, -423, 255, -423, 165, -423, 173,
+ -423, -423, -423, -423, 94, 94, 121, 121, 121, 420,
+ 420, 420, 420, 420, 420, 178, 178, 178, 178, 376,
+ 249, 280, 263, 340, 388, -423, 9, 117, 1303, 1303,
+ 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303,
+ 1303, 1303, 1303, 1303, 1303, 1303, 1303, -423, 389, -423,
+ 256, 99, 1303, 1303, 1303, 391, -423, 381, -6, -423,
+ -423, -423, -423, 136, 400, 244, -423, -423, -423, 382,
+ -423, -423, -423, 184, -423, 211, -423, 412, 261, -423,
+ 196, -423, -423, -423, -423, 94, 94, 121, 121, 121,
+ 420, 420, 420, 420, 420, 420, 178, 178, 178, 178,
+ 376, 249, 280, 263, 340, 392, -423, 1073, 1303, 1073,
+ 414, 1073, -6, -423, 1219, 1303, -423, -423, -423, 1303,
+ 1303, 1303, 453, -6, 1303, 262, 886, -423, 420, 420,
+ 420, 420, 420, 19, 19, 19, 19, 402, 325, 348,
+ 352, 378, 397, -423, 403, 390, 1073, -6, 421, 423,
+ 274, -423, -423, -423, 119, -423, -423, -423, -423, -423,
+ -423, 153, 408, -423, 323, -423, 92, -423, -423, -423,
+ 417, -423, 429, -423, -423, 1073, 441, -423, 1303, 467,
+ 281, -423, 495, -423, -423, 424, -423, -423, -423, -423,
+ 299, -423, 1303, 425, 413, 1073, 1303, 1303, 447, 1073,
+ -423, 1073, 1073, 451, 454, 301, -423, -423, -423, -423,
+ 161, -423, 323, 106, 315, -423, 457, 1073, -423, 1073,
+ 37, 1303, 70, 495, -423, 137, 1073, 304, -423, 1303,
+ -423, -423, 446, -423, 459, 466, 1073, 1073, 469, 452,
+ 455, 461, -423, 106, -423, 188, -423, 470, -423, -423,
+ -423, 75, 458, -423, 495, -423, 501, -423, 1073, 464,
+ 1073, -423, -423, 473, 484, 1073, -423, -423, -423, 474,
+ -423, -423, 1073, 1073, 489, 137, -423, 1073, -423, -423,
+ -423, 491, -423, 1073, 1073, -423, -423, -423, -423
+};
+
+/* YYPGOTO[NTERM-NUM]. */
+static const yytype_int16 yypgoto[] =
+{
+ -423, 0, -334, -423, -423, -423, -423, -423, -423, -423,
+ -423, -423, -370, -423, 189, -423, -423, 30, -423, -423,
+ 264, -423, 42, -423, 44, -423, -423, -423, -16, -423,
+ 534, -423, -423, -423, 133, 39, -423, -92, -423, -62,
+ -423, 485, -423, 34, 113, -423, -145, 213, -423, -139,
+ 208, -423, -132, 212, -423, -129, 217, -423, -140, 207,
+ -423, -423, -423, -423, -423, -423, -423, -138, -321, -423,
+ -32, 6, -423, -423, 97, -11, -423, -423, -423, -423,
+ -423, 317, -97, 62, -423, -423, -423, -423, -422, -423,
+ -423, -423, -423, -423, -423, -423, 8, -423, 40, -423,
+ -423, -423, -423, -423, -423, -423, -250, -411, -423, 2
+};
+
+/* YYTABLE[YYPACT[STATE-NUM]]. What to do in state STATE-NUM. If
+ positive, shift that token. If negative, reduce the rule which
+ number is the opposite. If zero, do what YYDEFACT says.
+ If YYTABLE_NINF, syntax error. */
+#define YYTABLE_NINF -1
+static const yytype_uint16 yytable[] =
+{
+ 39, 388, 82, 245, 85, 476, 83, 98, 100, 105,
+ 106, 139, 504, 204, 179, 300, 39, 128, 437, 140,
+ 202, 306, 293, 294, 103, 242, 39, 138, 145, 164,
+ 41, 430, 246, 452, 453, 468, 209, 249, 559, 149,
+ 472, 310, 340, 27, 283, 86, 41, 291, 95, 203,
+ 96, 130, 131, 329, 281, 27, 41, 135, 341, 342,
+ 330, 358, 333, 142, 143, 334, 27, 335, 331, 146,
+ 147, 148, 332, 150, 526, 155, 156, 180, 562, 239,
+ 258, 181, 39, 282, 27, 542, 27, 205, 228, 232,
+ 431, 314, 315, 252, 132, 255, 84, 182, 134, 243,
+ 544, 545, 384, 206, 520, 364, 247, 343, 344, 141,
+ 501, 460, 41, 133, 104, 244, 557, 569, 284, 353,
+ 391, 284, 248, 316, 317, 318, 210, 250, 560, 225,
+ 563, 226, 410, 48, 285, 573, 574, 292, 286, 411,
+ 288, 414, 289, 290, 415, 39, 416, 412, 354, 48,
+ 284, 413, 553, 27, 473, 582, 27, 39, 303, 48,
+ 27, 259, 308, 136, 591, 260, 307, 27, 473, 309,
+ 395, 396, 188, 189, 387, 41, 521, 522, 459, 208,
+ 27, 261, 549, 550, 551, 541, 183, 41, 27, 190,
+ 191, 522, 433, 262, 137, 366, 26, 27, 514, 184,
+ 267, 268, 397, 398, 399, 227, 263, 297, 434, 357,
+ 367, 336, 469, 151, 515, 48, 298, 269, 270, 311,
+ 312, 313, 27, 473, 461, 462, 463, 359, 325, 326,
+ 327, 328, 365, 516, 517, 518, 376, 382, 192, 193,
+ 284, 198, 208, 385, 383, 552, 522, 100, 284, 427,
+ 579, 359, 284, 389, 302, 157, 296, 428, 199, 284,
+ 390, 107, 580, 1, 2, 3, 271, 272, 483, 284,
+ 87, 284, 201, 417, 88, 200, 12, 13, 48, 15,
+ 487, 284, 207, 423, 18, 419, 497, 498, 484, 284,
+ 48, 499, 240, 420, 158, 162, 159, 159, 392, 393,
+ 394, 160, 163, 24, 25, 27, 473, 406, 407, 408,
+ 409, 237, 474, 159, 256, 257, 284, 251, 238, 89,
+ 421, 27, 28, 29, 30, 31, 253, 90, 159, 279,
+ 425, 457, 32, 254, 426, 458, 457, 284, 33, 277,
+ 486, 505, 34, 35, 435, 36, 37, 27, 278, 457,
+ 528, 108, 369, 513, 370, 371, 284, 185, 186, 187,
+ 530, 359, 372, 373, 374, 301, 338, 232, 467, 375,
+ 1, 2, 3, 470, 284, 475, 457, 87, 536, 284,
+ 548, 88, 280, 568, 27, 473, 15, 256, 257, 554,
+ 555, 287, 167, 168, 169, 170, 171, 172, 173, 174,
+ 175, 176, 177, 194, 195, 196, 197, 229, 27, 230,
+ 231, 273, 274, 275, 276, 349, 350, 39, 351, 39,
+ 352, 39, 495, 356, 490, 178, 89, 361, 27, 28,
+ 29, 355, 368, 503, 90, 362, 500, 345, 346, 347,
+ 348, 465, 27, 230, 231, 33, 363, 41, 456, 41,
+ 35, 41, 477, 478, 479, 480, 39, 510, 443, 444,
+ 445, 446, 418, 422, 359, 264, 265, 266, 429, 464,
+ 471, 485, 488, 492, 475, 502, 475, 506, 284, 524,
+ 511, 507, 512, 165, 166, 39, 41, 519, 167, 168,
+ 169, 170, 171, 172, 173, 174, 175, 176, 177, 525,
+ 527, 529, 531, 535, 539, 39, 431, 543, 537, 39,
+ 546, 39, 39, 547, 489, 41, 491, 556, 494, 571,
+ 475, 178, 475, 475, 566, 570, 572, 39, 575, 39,
+ 581, 576, 585, 589, 577, 41, 39, 561, 583, 41,
+ 578, 41, 41, 587, 590, 112, 39, 39, 592, 595,
+ 48, 598, 48, 475, 48, 112, 466, 41, 448, 41,
+ 451, 424, 447, 449, 386, 538, 41, 112, 39, 450,
+ 39, 213, 584, 565, 596, 39, 41, 41, 0, 0,
+ 0, 0, 39, 39, 593, 594, 0, 39, 0, 48,
+ 0, 0, 0, 39, 39, 0, 0, 0, 41, 0,
+ 41, 0, 540, 0, 0, 41, 208, 0, 0, 0,
+ 0, 0, 41, 41, 0, 0, 0, 41, 48, 0,
+ 212, 0, 0, 41, 41, 0, 558, 0, 0, 0,
+ 0, 0, 0, 567, 0, 0, 0, 0, 48, 0,
+ 0, 0, 48, 0, 48, 48, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 48, 0, 48, 0, 0, 586, 112, 588, 112, 48,
+ 112, 112, 0, 319, 320, 321, 322, 323, 324, 48,
+ 48, 0, 0, 0, 597, 0, 0, 112, 0, 0,
+ 208, 208, 0, 112, 112, 0, 0, 112, 0, 0,
+ 0, 48, 0, 48, 0, 0, 0, 0, 48, 0,
+ 0, 0, 0, 112, 0, 48, 48, 0, 0, 0,
+ 48, 0, 1, 2, 3, 0, 48, 48, 0, 87,
+ 211, 0, 0, 88, 0, 12, 13, 112, 15, 112,
+ 0, 0, 0, 18, 0, 0, 0, 0, 0, 0,
+ 0, 0, 400, 401, 402, 403, 404, 405, 0, 0,
+ 0, 0, 24, 25, 0, 0, 0, 0, 0, 0,
+ 0, 0, 112, 0, 112, 0, 0, 0, 89, 0,
+ 27, 28, 29, 30, 31, 0, 90, 0, 112, 0,
+ 0, 32, 112, 0, 0, 0, 0, 33, 0, 0,
+ 0, 34, 35, 0, 36, 37, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 112, 0, 112, 0,
+ 0, 0, 0, 0, 213, 438, 439, 440, 441, 442,
+ 213, 213, 213, 213, 213, 213, 213, 213, 213, 213,
+ 213, 0, 0, 0, 0, 1, 2, 3, 4, 0,
+ 0, 5, 6, 7, 8, 9, 10, 11, 12, 13,
+ 14, 15, 16, 17, 0, 0, 18, 19, 20, 0,
+ 21, 22, 112, 436, 23, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 24, 25, 0, 436, 436,
+ 112, 0, 0, 0, 0, 0, 112, 112, 112, 0,
+ 0, 26, 144, 27, 28, 29, 30, 31, 0, 0,
+ 0, 0, 0, 0, 32, 0, 213, 0, 0, 0,
+ 33, 0, 0, 0, 34, 35, 0, 36, 37, 256,
+ 257, 0, 0, 38, 167, 168, 169, 170, 171, 172,
+ 173, 174, 175, 176, 177, 0, 0, 0, 0, 0,
+ 0, 0, 112, 0, 0, 0, 0, 0, 112, 112,
+ 0, 0, 0, 112, 112, 436, 0, 178, 112, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 1, 2, 3,
+ 4, 213, 0, 5, 6, 7, 8, 9, 10, 11,
+ 12, 13, 14, 15, 16, 17, 0, 0, 18, 19,
+ 20, 0, 21, 22, 0, 0, 23, 0, 0, 0,
+ 0, 0, 112, 0, 0, 0, 0, 24, 25, 0,
+ 0, 0, 0, 0, 0, 0, 112, 0, 0, 0,
+ 436, 112, 0, 26, 295, 27, 28, 29, 30, 31,
+ 0, 0, 0, 0, 0, 0, 32, 0, 0, 0,
+ 0, 0, 33, 0, 0, 112, 34, 35, 0, 36,
+ 37, 0, 0, 112, 0, 38, 1, 2, 3, 4,
+ 0, 0, 5, 6, 7, 8, 9, 10, 11, 12,
+ 13, 14, 15, 16, 17, 0, 0, 18, 19, 20,
+ 0, 21, 22, 0, 0, 23, 0, 1, 2, 3,
+ 0, 0, 0, 0, 87, 0, 24, 25, 88, 0,
+ 12, 13, 0, 15, 0, 0, 0, 0, 18, 0,
+ 0, 0, 26, 0, 27, 28, 29, 30, 31, 0,
+ 0, 0, 0, 0, 0, 32, 0, 24, 25, 0,
+ 0, 33, 0, 0, 0, 34, 35, 0, 36, 37,
+ 0, 0, 0, 89, 38, 27, 28, 29, 30, 31,
+ 0, 90, 0, 0, 0, 0, 32, 0, 0, 0,
+ 0, 0, 33, 0, 0, 0, 34, 35, 299, 36,
+ 37, 1, 2, 3, 0, 0, 0, 0, 87, 0,
+ 0, 0, 88, 0, 12, 13, 0, 15, 0, 0,
+ 0, 0, 18, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 1, 2, 3, 0, 0, 0, 0, 87,
+ 0, 24, 25, 88, 0, 12, 13, 0, 15, 0,
+ 0, 0, 0, 18, 0, 0, 0, 89, 0, 27,
+ 28, 29, 30, 31, 0, 90, 0, 0, 0, 0,
+ 32, 0, 24, 25, 0, 0, 33, 304, 0, 0,
+ 34, 35, 0, 36, 37, 0, 0, 0, 89, 0,
+ 27, 28, 29, 30, 31, 0, 90, 0, 0, 0,
+ 0, 32, 0, 0, 0, 0, 0, 33, 0, 0,
+ 0, 34, 35, 496, 36, 37, 1, 2, 3, 0,
+ 0, 0, 0, 87, 0, 0, 0, 88, 0, 12,
+ 13, 0, 15, 0, 0, 0, 0, 18, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 24, 25, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 89, 0, 27, 28, 29, 30, 31, 0,
+ 90, 0, 0, 0, 0, 32, 0, 0, 0, 0,
+ 0, 33, 0, 0, 0, 34, 35, 0, 36, 37
+};
+
+static const yytype_int16 yycheck[] =
+{
+ 0, 251, 0, 100, 4, 375, 1, 7, 8, 9,
+ 10, 22, 434, 1, 46, 153, 16, 11, 339, 1,
+ 41, 159, 30, 31, 1, 1, 26, 21, 26, 45,
+ 0, 22, 1, 354, 355, 369, 1, 1, 1, 33,
+ 374, 179, 23, 61, 1, 78, 16, 1, 6, 70,
+ 6, 12, 13, 198, 41, 61, 26, 18, 39, 40,
+ 199, 79, 202, 24, 25, 203, 61, 205, 200, 30,
+ 31, 32, 201, 34, 485, 36, 37, 67, 8, 95,
+ 112, 71, 82, 70, 61, 507, 61, 75, 88, 89,
+ 81, 183, 184, 109, 78, 111, 91, 87, 78, 75,
+ 511, 512, 240, 91, 474, 80, 75, 88, 89, 91,
+ 431, 361, 82, 16, 91, 91, 527, 539, 75, 41,
+ 258, 75, 91, 185, 186, 187, 91, 91, 91, 87,
+ 60, 87, 277, 0, 91, 546, 547, 91, 132, 278,
+ 134, 281, 136, 137, 282, 145, 284, 279, 70, 16,
+ 75, 280, 522, 61, 62, 80, 61, 157, 158, 26,
+ 61, 67, 162, 78, 575, 71, 160, 61, 62, 163,
+ 262, 263, 22, 23, 79, 145, 84, 85, 79, 82,
+ 61, 87, 516, 517, 518, 506, 72, 157, 61, 39,
+ 40, 85, 75, 72, 78, 60, 59, 61, 79, 85,
+ 22, 23, 264, 265, 266, 78, 85, 75, 91, 225,
+ 75, 211, 76, 75, 464, 82, 84, 39, 40, 180,
+ 181, 182, 61, 62, 362, 363, 364, 227, 194, 195,
+ 196, 197, 232, 80, 81, 82, 236, 237, 88, 89,
+ 75, 90, 145, 243, 238, 84, 85, 247, 75, 84,
+ 62, 251, 75, 253, 157, 80, 79, 84, 68, 75,
+ 254, 1, 74, 3, 4, 5, 88, 89, 84, 75,
+ 10, 75, 42, 79, 14, 66, 16, 17, 145, 19,
+ 84, 75, 0, 294, 24, 79, 424, 425, 385, 75,
+ 157, 429, 81, 79, 76, 76, 78, 78, 259, 260,
+ 261, 83, 83, 43, 44, 61, 62, 273, 274, 275,
+ 276, 76, 68, 78, 43, 44, 75, 78, 83, 59,
+ 79, 61, 62, 63, 64, 65, 76, 67, 78, 66,
+ 75, 75, 72, 83, 79, 79, 75, 75, 78, 90,
+ 79, 79, 82, 83, 338, 85, 86, 61, 68, 75,
+ 488, 91, 66, 79, 68, 69, 75, 45, 46, 47,
+ 79, 361, 76, 77, 78, 75, 22, 367, 368, 83,
+ 3, 4, 5, 373, 75, 375, 75, 10, 79, 75,
+ 79, 14, 42, 79, 61, 62, 19, 43, 44, 74,
+ 75, 21, 48, 49, 50, 51, 52, 53, 54, 55,
+ 56, 57, 58, 35, 36, 37, 38, 60, 61, 62,
+ 63, 35, 36, 37, 38, 90, 68, 417, 66, 419,
+ 42, 421, 422, 91, 418, 81, 59, 78, 61, 62,
+ 63, 75, 67, 433, 67, 80, 430, 35, 36, 37,
+ 38, 60, 61, 62, 63, 78, 80, 417, 59, 419,
+ 83, 421, 70, 71, 72, 73, 456, 457, 345, 346,
+ 347, 348, 78, 78, 464, 45, 46, 47, 80, 78,
+ 70, 59, 80, 59, 474, 22, 476, 80, 75, 62,
+ 59, 91, 59, 43, 44, 485, 456, 79, 48, 49,
+ 50, 51, 52, 53, 54, 55, 56, 57, 58, 70,
+ 59, 34, 7, 79, 91, 505, 81, 60, 502, 509,
+ 59, 511, 512, 59, 417, 485, 419, 60, 421, 60,
+ 520, 81, 522, 523, 535, 79, 60, 527, 59, 529,
+ 60, 79, 31, 60, 79, 505, 536, 531, 80, 509,
+ 79, 511, 512, 79, 60, 11, 546, 547, 74, 60,
+ 417, 60, 419, 553, 421, 21, 367, 527, 350, 529,
+ 353, 297, 349, 351, 247, 503, 536, 33, 568, 352,
+ 570, 86, 564, 533, 585, 575, 546, 547, -1, -1,
+ -1, -1, 582, 583, 582, 583, -1, 587, -1, 456,
+ -1, -1, -1, 593, 594, -1, -1, -1, 568, -1,
+ 570, -1, 505, -1, -1, 575, 509, -1, -1, -1,
+ -1, -1, 582, 583, -1, -1, -1, 587, 485, -1,
+ 86, -1, -1, 593, 594, -1, 529, -1, -1, -1,
+ -1, -1, -1, 536, -1, -1, -1, -1, 505, -1,
+ -1, -1, 509, -1, 511, 512, -1, -1, -1, -1,
+ -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
+ 527, -1, 529, -1, -1, 568, 132, 570, 134, 536,
+ 136, 137, -1, 188, 189, 190, 191, 192, 193, 546,
+ 547, -1, -1, -1, 587, -1, -1, 153, -1, -1,
+ 593, 594, -1, 159, 160, -1, -1, 163, -1, -1,
+ -1, 568, -1, 570, -1, -1, -1, -1, 575, -1,
+ -1, -1, -1, 179, -1, 582, 583, -1, -1, -1,
+ 587, -1, 3, 4, 5, -1, 593, 594, -1, 10,
+ 11, -1, -1, 14, -1, 16, 17, 203, 19, 205,
+ -1, -1, -1, 24, -1, -1, -1, -1, -1, -1,
+ -1, -1, 267, 268, 269, 270, 271, 272, -1, -1,
+ -1, -1, 43, 44, -1, -1, -1, -1, -1, -1,
+ -1, -1, 238, -1, 240, -1, -1, -1, 59, -1,
+ 61, 62, 63, 64, 65, -1, 67, -1, 254, -1,
+ -1, 72, 258, -1, -1, -1, -1, 78, -1, -1,
+ -1, 82, 83, -1, 85, 86, -1, -1, -1, -1,
+ -1, -1, -1, -1, -1, -1, 282, -1, 284, -1,
+ -1, -1, -1, -1, 339, 340, 341, 342, 343, 344,
+ 345, 346, 347, 348, 349, 350, 351, 352, 353, 354,
+ 355, -1, -1, -1, -1, 3, 4, 5, 6, -1,
+ -1, 9, 10, 11, 12, 13, 14, 15, 16, 17,
+ 18, 19, 20, 21, -1, -1, 24, 25, 26, -1,
+ 28, 29, 338, 339, 32, -1, -1, -1, -1, -1,
+ -1, -1, -1, -1, -1, 43, 44, -1, 354, 355,
+ 356, -1, -1, -1, -1, -1, 362, 363, 364, -1,
+ -1, 59, 60, 61, 62, 63, 64, 65, -1, -1,
+ -1, -1, -1, -1, 72, -1, 431, -1, -1, -1,
+ 78, -1, -1, -1, 82, 83, -1, 85, 86, 43,
+ 44, -1, -1, 91, 48, 49, 50, 51, 52, 53,
+ 54, 55, 56, 57, 58, -1, -1, -1, -1, -1,
+ -1, -1, 418, -1, -1, -1, -1, -1, 424, 425,
+ -1, -1, -1, 429, 430, 431, -1, 81, 434, -1,
+ -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
+ -1, -1, -1, -1, -1, -1, -1, 3, 4, 5,
+ 6, 506, -1, 9, 10, 11, 12, 13, 14, 15,
+ 16, 17, 18, 19, 20, 21, -1, -1, 24, 25,
+ 26, -1, 28, 29, -1, -1, 32, -1, -1, -1,
+ -1, -1, 488, -1, -1, -1, -1, 43, 44, -1,
+ -1, -1, -1, -1, -1, -1, 502, -1, -1, -1,
+ 506, 507, -1, 59, 60, 61, 62, 63, 64, 65,
+ -1, -1, -1, -1, -1, -1, 72, -1, -1, -1,
+ -1, -1, 78, -1, -1, 531, 82, 83, -1, 85,
+ 86, -1, -1, 539, -1, 91, 3, 4, 5, 6,
+ -1, -1, 9, 10, 11, 12, 13, 14, 15, 16,
+ 17, 18, 19, 20, 21, -1, -1, 24, 25, 26,
+ -1, 28, 29, -1, -1, 32, -1, 3, 4, 5,
+ -1, -1, -1, -1, 10, -1, 43, 44, 14, -1,
+ 16, 17, -1, 19, -1, -1, -1, -1, 24, -1,
+ -1, -1, 59, -1, 61, 62, 63, 64, 65, -1,
+ -1, -1, -1, -1, -1, 72, -1, 43, 44, -1,
+ -1, 78, -1, -1, -1, 82, 83, -1, 85, 86,
+ -1, -1, -1, 59, 91, 61, 62, 63, 64, 65,
+ -1, 67, -1, -1, -1, -1, 72, -1, -1, -1,
+ -1, -1, 78, -1, -1, -1, 82, 83, 84, 85,
+ 86, 3, 4, 5, -1, -1, -1, -1, 10, -1,
+ -1, -1, 14, -1, 16, 17, -1, 19, -1, -1,
+ -1, -1, 24, -1, -1, -1, -1, -1, -1, -1,
+ -1, -1, 3, 4, 5, -1, -1, -1, -1, 10,
+ -1, 43, 44, 14, -1, 16, 17, -1, 19, -1,
+ -1, -1, -1, 24, -1, -1, -1, 59, -1, 61,
+ 62, 63, 64, 65, -1, 67, -1, -1, -1, -1,
+ 72, -1, 43, 44, -1, -1, 78, 79, -1, -1,
+ 82, 83, -1, 85, 86, -1, -1, -1, 59, -1,
+ 61, 62, 63, 64, 65, -1, 67, -1, -1, -1,
+ -1, 72, -1, -1, -1, -1, -1, 78, -1, -1,
+ -1, 82, 83, 84, 85, 86, 3, 4, 5, -1,
+ -1, -1, -1, 10, -1, -1, -1, 14, -1, 16,
+ 17, -1, 19, -1, -1, -1, -1, 24, -1, -1,
+ -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
+ -1, -1, -1, -1, -1, -1, 43, 44, -1, -1,
+ -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
+ -1, -1, 59, -1, 61, 62, 63, 64, 65, -1,
+ 67, -1, -1, -1, -1, 72, -1, -1, -1, -1,
+ -1, 78, -1, -1, -1, 82, 83, -1, 85, 86
+};
+
+/* YYSTOS[STATE-NUM] -- The (internal number of the) accessing
+ symbol of state STATE-NUM. */
+static const yytype_uint8 yystos[] =
+{
+ 0, 3, 4, 5, 6, 9, 10, 11, 12, 13,
+ 14, 15, 16, 17, 18, 19, 20, 21, 24, 25,
+ 26, 28, 29, 32, 43, 44, 59, 61, 62, 63,
+ 64, 65, 72, 78, 82, 83, 85, 86, 91, 93,
+ 105, 109, 110, 115, 117, 119, 123, 125, 126, 128,
+ 130, 132, 134, 137, 140, 143, 146, 149, 152, 155,
+ 158, 161, 165, 166, 167, 168, 171, 176, 177, 178,
+ 179, 182, 183, 184, 185, 186, 192, 193, 194, 195,
+ 196, 200, 201, 1, 91, 93, 78, 10, 14, 59,
+ 67, 93, 95, 108, 109, 114, 116, 197, 93, 169,
+ 93, 172, 173, 1, 91, 93, 93, 1, 91, 114,
+ 116, 118, 122, 124, 126, 127, 129, 131, 133, 135,
+ 138, 141, 144, 147, 150, 153, 156, 159, 163, 122,
+ 127, 127, 78, 166, 78, 127, 78, 78, 163, 167,
+ 1, 91, 127, 127, 60, 201, 127, 127, 127, 163,
+ 127, 75, 111, 112, 113, 127, 127, 80, 76, 78,
+ 83, 120, 76, 83, 120, 43, 44, 48, 49, 50,
+ 51, 52, 53, 54, 55, 56, 57, 58, 81, 162,
+ 67, 71, 87, 72, 85, 45, 46, 47, 22, 23,
+ 39, 40, 88, 89, 35, 36, 37, 38, 90, 68,
+ 66, 42, 41, 70, 1, 75, 91, 0, 166, 1,
+ 91, 11, 122, 133, 136, 139, 142, 145, 148, 151,
+ 154, 157, 160, 164, 181, 114, 116, 78, 93, 60,
+ 62, 63, 93, 106, 107, 94, 96, 76, 83, 120,
+ 81, 174, 1, 75, 91, 174, 1, 75, 91, 1,
+ 91, 78, 120, 76, 83, 120, 43, 44, 162, 67,
+ 71, 87, 72, 85, 45, 46, 47, 22, 23, 39,
+ 40, 88, 89, 35, 36, 37, 38, 90, 68, 66,
+ 42, 41, 70, 1, 75, 91, 163, 21, 163, 163,
+ 163, 1, 91, 30, 31, 60, 79, 75, 84, 84,
+ 159, 75, 166, 93, 79, 121, 159, 163, 93, 163,
+ 159, 127, 127, 127, 129, 129, 131, 131, 131, 133,
+ 133, 133, 133, 133, 133, 135, 135, 135, 135, 138,
+ 141, 144, 147, 150, 159, 159, 93, 170, 22, 162,
+ 23, 39, 40, 88, 89, 35, 36, 37, 38, 90,
+ 68, 66, 42, 41, 70, 75, 91, 120, 79, 93,
+ 198, 78, 80, 80, 80, 93, 60, 75, 67, 66,
+ 68, 69, 76, 77, 78, 83, 93, 97, 98, 101,
+ 102, 103, 93, 163, 159, 93, 173, 79, 198, 93,
+ 163, 159, 127, 127, 127, 129, 129, 131, 131, 131,
+ 133, 133, 133, 133, 133, 133, 135, 135, 135, 135,
+ 138, 141, 144, 147, 150, 159, 159, 79, 78, 79,
+ 79, 79, 78, 167, 112, 75, 79, 84, 84, 80,
+ 22, 81, 175, 75, 91, 163, 122, 160, 133, 133,
+ 133, 133, 133, 136, 136, 136, 136, 139, 142, 145,
+ 148, 151, 160, 160, 163, 180, 59, 75, 79, 79,
+ 198, 159, 159, 159, 78, 60, 106, 93, 94, 76,
+ 93, 70, 94, 62, 68, 93, 104, 70, 71, 72,
+ 73, 99, 100, 84, 174, 59, 79, 84, 80, 166,
+ 163, 166, 59, 187, 166, 93, 84, 159, 159, 159,
+ 163, 160, 22, 93, 180, 79, 80, 91, 199, 201,
+ 93, 59, 59, 79, 79, 198, 80, 81, 82, 79,
+ 104, 84, 85, 104, 62, 70, 199, 59, 159, 34,
+ 79, 7, 188, 189, 190, 79, 79, 163, 175, 91,
+ 166, 160, 180, 60, 199, 199, 59, 59, 79, 94,
+ 94, 94, 84, 104, 74, 75, 60, 199, 166, 1,
+ 91, 163, 8, 60, 191, 190, 167, 166, 79, 180,
+ 79, 60, 60, 199, 199, 59, 79, 79, 79, 62,
+ 74, 60, 80, 80, 188, 31, 166, 79, 166, 60,
+ 60, 199, 74, 201, 201, 60, 167, 166, 60
+};
+
+#define yyerrok (yyerrstatus = 0)
+#define yyclearin (yychar = YYEMPTY)
+#define YYEMPTY (-2)
+#define YYEOF 0
+
+#define YYACCEPT goto yyacceptlab
+#define YYABORT goto yyabortlab
+#define YYERROR goto yyerrorlab
+
+
+/* Like YYERROR except do call yyerror. This remains here temporarily
+ to ease the transition to the new meaning of YYERROR, for GCC.
+ Once GCC version 2 has supplanted version 1, this can go. */
+
+#define YYFAIL goto yyerrlab
+
+#define YYRECOVERING() (!!yyerrstatus)
+
+#define YYBACKUP(Token, Value) \
+do \
+ if (yychar == YYEMPTY && yylen == 1) \
+ { \
+ yychar = (Token); \
+ yylval = (Value); \
+ yytoken = YYTRANSLATE (yychar); \
+ YYPOPSTACK (1); \
+ goto yybackup; \
+ } \
+ else \
+ { \
+ yyerror (YY_("syntax error: cannot back up")); \
+ YYERROR; \
+ } \
+while (YYID (0))
+
+
+#define YYTERROR 1
+#define YYERRCODE 256
+
+
+/* YYLLOC_DEFAULT -- Set CURRENT to span from RHS[1] to RHS[N].
+ If N is 0, then set CURRENT to the empty location which ends
+ the previous symbol: RHS[0] (always defined). */
+
+#define YYRHSLOC(Rhs, K) ((Rhs)[K])
+#ifndef YYLLOC_DEFAULT
+# define YYLLOC_DEFAULT(Current, Rhs, N) \
+ do \
+ if (YYID (N)) \
+ { \
+ (Current).first_line = YYRHSLOC (Rhs, 1).first_line; \
+ (Current).first_column = YYRHSLOC (Rhs, 1).first_column; \
+ (Current).last_line = YYRHSLOC (Rhs, N).last_line; \
+ (Current).last_column = YYRHSLOC (Rhs, N).last_column; \
+ } \
+ else \
+ { \
+ (Current).first_line = (Current).last_line = \
+ YYRHSLOC (Rhs, 0).last_line; \
+ (Current).first_column = (Current).last_column = \
+ YYRHSLOC (Rhs, 0).last_column; \
+ } \
+ while (YYID (0))
+#endif
+
+
+/* YY_LOCATION_PRINT -- Print the location on the stream.
+ This macro was not mandated originally: define only if we know
+ we won't break user code: when these are the locations we know. */
+
+#ifndef YY_LOCATION_PRINT
+# if YYLTYPE_IS_TRIVIAL
+# define YY_LOCATION_PRINT(File, Loc) \
+ fprintf (File, "%d.%d-%d.%d", \
+ (Loc).first_line, (Loc).first_column, \
+ (Loc).last_line, (Loc).last_column)
+# else
+# define YY_LOCATION_PRINT(File, Loc) ((void) 0)
+# endif
+#endif
+
+
+/* YYLEX -- calling `yylex' with the right arguments. */
+
+#ifdef YYLEX_PARAM
+# define YYLEX yylex (&yylval, YYLEX_PARAM)
+#else
+# define YYLEX yylex (&yylval)
+#endif
+
+/* Enable debugging if requested. */
+#if YYDEBUG
+
+# ifndef YYFPRINTF
+# include <stdio.h> /* INFRINGES ON USER NAME SPACE */
+# define YYFPRINTF fprintf
+# endif
+
+# define YYDPRINTF(Args) \
+do { \
+ if (yydebug) \
+ YYFPRINTF Args; \
+} while (YYID (0))
+
+# define YY_SYMBOL_PRINT(Title, Type, Value, Location) \
+do { \
+ if (yydebug) \
+ { \
+ YYFPRINTF (stderr, "%s ", Title); \
+ yy_symbol_print (stderr, \
+ Type, Value); \
+ YYFPRINTF (stderr, "\n"); \
+ } \
+} while (YYID (0))
+
+
+/*--------------------------------.
+| Print this symbol on YYOUTPUT. |
+`--------------------------------*/
+
+/*ARGSUSED*/
+#if (defined __STDC__ || defined __C99__FUNC__ \
+ || defined __cplusplus || defined _MSC_VER)
+static void
+yy_symbol_value_print (FILE *yyoutput, int yytype, YYSTYPE const * const yyvaluep)
+#else
+static void
+yy_symbol_value_print (yyoutput, yytype, yyvaluep)
+ FILE *yyoutput;
+ int yytype;
+ YYSTYPE const * const yyvaluep;
+#endif
+{
+ if (!yyvaluep)
+ return;
+# ifdef YYPRINT
+ if (yytype < YYNTOKENS)
+ YYPRINT (yyoutput, yytoknum[yytype], *yyvaluep);
+# else
+ YYUSE (yyoutput);
+# endif
+ switch (yytype)
+ {
+ default:
+ break;
+ }
+}
+
+
+/*--------------------------------.
+| Print this symbol on YYOUTPUT. |
+`--------------------------------*/
+
+#if (defined __STDC__ || defined __C99__FUNC__ \
+ || defined __cplusplus || defined _MSC_VER)
+static void
+yy_symbol_print (FILE *yyoutput, int yytype, YYSTYPE const * const yyvaluep)
+#else
+static void
+yy_symbol_print (yyoutput, yytype, yyvaluep)
+ FILE *yyoutput;
+ int yytype;
+ YYSTYPE const * const yyvaluep;
+#endif
+{
+ if (yytype < YYNTOKENS)
+ YYFPRINTF (yyoutput, "token %s (", yytname[yytype]);
+ else
+ YYFPRINTF (yyoutput, "nterm %s (", yytname[yytype]);
+
+ yy_symbol_value_print (yyoutput, yytype, yyvaluep);
+ YYFPRINTF (yyoutput, ")");
+}
+
+/*------------------------------------------------------------------.
+| yy_stack_print -- Print the state stack from its BOTTOM up to its |
+| TOP (included). |
+`------------------------------------------------------------------*/
+
+#if (defined __STDC__ || defined __C99__FUNC__ \
+ || defined __cplusplus || defined _MSC_VER)
+static void
+yy_stack_print (yytype_int16 *yybottom, yytype_int16 *yytop)
+#else
+static void
+yy_stack_print (yybottom, yytop)
+ yytype_int16 *yybottom;
+ yytype_int16 *yytop;
+#endif
+{
+ YYFPRINTF (stderr, "Stack now");
+ for (; yybottom <= yytop; yybottom++)
+ {
+ int yybot = *yybottom;
+ YYFPRINTF (stderr, " %d", yybot);
+ }
+ YYFPRINTF (stderr, "\n");
+}
+
+# define YY_STACK_PRINT(Bottom, Top) \
+do { \
+ if (yydebug) \
+ yy_stack_print ((Bottom), (Top)); \
+} while (YYID (0))
+
+
+/*------------------------------------------------.
+| Report that the YYRULE is going to be reduced. |
+`------------------------------------------------*/
+
+#if (defined __STDC__ || defined __C99__FUNC__ \
+ || defined __cplusplus || defined _MSC_VER)
+static void
+yy_reduce_print (YYSTYPE *yyvsp, int yyrule)
+#else
+static void
+yy_reduce_print (yyvsp, yyrule)
+ YYSTYPE *yyvsp;
+ int yyrule;
+#endif
+{
+ int yynrhs = yyr2[yyrule];
+ int yyi;
+ unsigned long int yylno = yyrline[yyrule];
+ YYFPRINTF (stderr, "Reducing stack by rule %d (line %lu):\n",
+ yyrule - 1, yylno);
+ /* The symbols being reduced. */
+ for (yyi = 0; yyi < yynrhs; yyi++)
+ {
+ YYFPRINTF (stderr, " $%d = ", yyi + 1);
+ yy_symbol_print (stderr, yyrhs[yyprhs[yyrule] + yyi],
+ &(yyvsp[(yyi + 1) - (yynrhs)])
+ );
+ YYFPRINTF (stderr, "\n");
+ }
+}
+
+# define YY_REDUCE_PRINT(Rule) \
+do { \
+ if (yydebug) \
+ yy_reduce_print (yyvsp, Rule); \
+} while (YYID (0))
+
+/* Nonzero means print parse trace. It is left uninitialized so that
+ multiple parsers can coexist. */
+int yydebug;
+#else /* !YYDEBUG */
+# define YYDPRINTF(Args)
+# define YY_SYMBOL_PRINT(Title, Type, Value, Location)
+# define YY_STACK_PRINT(Bottom, Top)
+# define YY_REDUCE_PRINT(Rule)
+#endif /* !YYDEBUG */
+
+
+/* YYINITDEPTH -- initial size of the parser's stacks. */
+#ifndef YYINITDEPTH
+# define YYINITDEPTH 200
+#endif
+
+/* YYMAXDEPTH -- maximum size the stacks can grow to (effective only
+ if the built-in stack extension method is used).
+
+ Do not make this value too large; the results are undefined if
+ YYSTACK_ALLOC_MAXIMUM < YYSTACK_BYTES (YYMAXDEPTH)
+ evaluated with infinite-precision integer arithmetic. */
+
+#ifndef YYMAXDEPTH
+# define YYMAXDEPTH 10000
+#endif
+
+
+
+#if YYERROR_VERBOSE
+
+# ifndef yystrlen
+# if defined __GLIBC__ && defined _STRING_H
+# define yystrlen strlen
+# else
+/* Return the length of YYSTR. */
+#if (defined __STDC__ || defined __C99__FUNC__ \
+ || defined __cplusplus || defined _MSC_VER)
+static YYSIZE_T
+yystrlen (const char *yystr)
+#else
+static YYSIZE_T
+yystrlen (yystr)
+ const char *yystr;
+#endif
+{
+ YYSIZE_T yylen;
+ for (yylen = 0; yystr[yylen]; yylen++)
+ continue;
+ return yylen;
+}
+# endif
+# endif
+
+# ifndef yystpcpy
+# if defined __GLIBC__ && defined _STRING_H && defined _GNU_SOURCE
+# define yystpcpy stpcpy
+# else
+/* Copy YYSRC to YYDEST, returning the address of the terminating '\0' in
+ YYDEST. */
+#if (defined __STDC__ || defined __C99__FUNC__ \
+ || defined __cplusplus || defined _MSC_VER)
+static char *
+yystpcpy (char *yydest, const char *yysrc)
+#else
+static char *
+yystpcpy (yydest, yysrc)
+ char *yydest;
+ const char *yysrc;
+#endif
+{
+ char *yyd = yydest;
+ const char *yys = yysrc;
+
+ while ((*yyd++ = *yys++) != '\0')
+ continue;
+
+ return yyd - 1;
+}
+# endif
+# endif
+
+# ifndef yytnamerr
+/* Copy to YYRES the contents of YYSTR after stripping away unnecessary
+ quotes and backslashes, so that it's suitable for yyerror. The
+ heuristic is that double-quoting is unnecessary unless the string
+ contains an apostrophe, a comma, or backslash (other than
+ backslash-backslash). YYSTR is taken from yytname. If YYRES is
+ null, do not copy; instead, return the length of what the result
+ would have been. */
+static YYSIZE_T
+yytnamerr (char *yyres, const char *yystr)
+{
+ if (*yystr == '"')
+ {
+ YYSIZE_T yyn = 0;
+ char const *yyp = yystr;
+
+ for (;;)
+ switch (*++yyp)
+ {
+ case '\'':
+ case ',':
+ goto do_not_strip_quotes;
+
+ case '\\':
+ if (*++yyp != '\\')
+ goto do_not_strip_quotes;
+ /* Fall through. */
+ default:
+ if (yyres)
+ yyres[yyn] = *yyp;
+ yyn++;
+ break;
+
+ case '"':
+ if (yyres)
+ yyres[yyn] = '\0';
+ return yyn;
+ }
+ do_not_strip_quotes: ;
+ }
+
+ if (! yyres)
+ return yystrlen (yystr);
+
+ return yystpcpy (yyres, yystr) - yyres;
+}
+# endif
+
+/* Copy into YYRESULT an error message about the unexpected token
+ YYCHAR while in state YYSTATE. Return the number of bytes copied,
+ including the terminating null byte. If YYRESULT is null, do not
+ copy anything; just return the number of bytes that would be
+ copied. As a special case, return 0 if an ordinary "syntax error"
+ message will do. Return YYSIZE_MAXIMUM if overflow occurs during
+ size calculation. */
+static YYSIZE_T
+yysyntax_error (char *yyresult, int yystate, int yychar)
+{
+ int yyn = yypact[yystate];
+
+ if (! (YYPACT_NINF < yyn && yyn <= YYLAST))
+ return 0;
+ else
+ {
+ int yytype = YYTRANSLATE (yychar);
+ YYSIZE_T yysize0 = yytnamerr (0, yytname[yytype]);
+ YYSIZE_T yysize = yysize0;
+ YYSIZE_T yysize1;
+ int yysize_overflow = 0;
+ enum { YYERROR_VERBOSE_ARGS_MAXIMUM = 5 };
+ char const *yyarg[YYERROR_VERBOSE_ARGS_MAXIMUM];
+ int yyx;
+
+# if 0
+ /* This is so xgettext sees the translatable formats that are
+ constructed on the fly. */
+ YY_("syntax error, unexpected %s");
+ YY_("syntax error, unexpected %s, expecting %s");
+ YY_("syntax error, unexpected %s, expecting %s or %s");
+ YY_("syntax error, unexpected %s, expecting %s or %s or %s");
+ YY_("syntax error, unexpected %s, expecting %s or %s or %s or %s");
+# endif
+ char *yyfmt;
+ char const *yyf;
+ static char const yyunexpected[] = "syntax error, unexpected %s";
+ static char const yyexpecting[] = ", expecting %s";
+ static char const yyor[] = " or %s";
+ char yyformat[sizeof yyunexpected
+ + sizeof yyexpecting - 1
+ + ((YYERROR_VERBOSE_ARGS_MAXIMUM - 2)
+ * (sizeof yyor - 1))];
+ char const *yyprefix = yyexpecting;
+
+ /* Start YYX at -YYN if negative to avoid negative indexes in
+ YYCHECK. */
+ int yyxbegin = yyn < 0 ? -yyn : 0;
+
+ /* Stay within bounds of both yycheck and yytname. */
+ int yychecklim = YYLAST - yyn + 1;
+ int yyxend = yychecklim < YYNTOKENS ? yychecklim : YYNTOKENS;
+ int yycount = 1;
+
+ yyarg[0] = yytname[yytype];
+ yyfmt = yystpcpy (yyformat, yyunexpected);
+
+ for (yyx = yyxbegin; yyx < yyxend; ++yyx)
+ if (yycheck[yyx + yyn] == yyx && yyx != YYTERROR)
+ {
+ if (yycount == YYERROR_VERBOSE_ARGS_MAXIMUM)
+ {
+ yycount = 1;
+ yysize = yysize0;
+ yyformat[sizeof yyunexpected - 1] = '\0';
+ break;
+ }
+ yyarg[yycount++] = yytname[yyx];
+ yysize1 = yysize + yytnamerr (0, yytname[yyx]);
+ yysize_overflow |= (yysize1 < yysize);
+ yysize = yysize1;
+ yyfmt = yystpcpy (yyfmt, yyprefix);
+ yyprefix = yyor;
+ }
+
+ yyf = YY_(yyformat);
+ yysize1 = yysize + yystrlen (yyf);
+ yysize_overflow |= (yysize1 < yysize);
+ yysize = yysize1;
+
+ if (yysize_overflow)
+ return YYSIZE_MAXIMUM;
+
+ if (yyresult)
+ {
+ /* Avoid sprintf, as that infringes on the user's name space.
+ Don't have undefined behavior even if the translation
+ produced a string with the wrong number of "%s"s. */
+ char *yyp = yyresult;
+ int yyi = 0;
+ while ((*yyp = *yyf) != '\0')
+ {
+ if (*yyp == '%' && yyf[1] == 's' && yyi < yycount)
+ {
+ yyp += yytnamerr (yyp, yyarg[yyi++]);
+ yyf += 2;
+ }
+ else
+ {
+ yyp++;
+ yyf++;
+ }
+ }
+ }
+ return yysize;
+ }
+}
+#endif /* YYERROR_VERBOSE */
+
+
+/*-----------------------------------------------.
+| Release the memory associated to this symbol. |
+`-----------------------------------------------*/
+
+/*ARGSUSED*/
+#if (defined __STDC__ || defined __C99__FUNC__ \
+ || defined __cplusplus || defined _MSC_VER)
+static void
+yydestruct (const char *yymsg, int yytype, YYSTYPE *yyvaluep)
+#else
+static void
+yydestruct (yymsg, yytype, yyvaluep)
+ const char *yymsg;
+ int yytype;
+ YYSTYPE *yyvaluep;
+#endif
+{
+ YYUSE (yyvaluep);
+
+ if (!yymsg)
+ yymsg = "Deleting";
+ YY_SYMBOL_PRINT (yymsg, yytype, yyvaluep, yylocationp);
+
+ switch (yytype)
+ {
+
+ default:
+ break;
+ }
+}
+
+
+
+
+
+
+struct yypstate
+ {
+ /* Number of syntax errors so far. */
+ int yynerrs;
+
+ int yystate;
+ /* Number of tokens to shift before error messages enabled. */
+ int yyerrstatus;
+
+ /* The stacks and their tools:
+ `yyss': related to states.
+ `yyvs': related to semantic values.
+
+ Refer to the stacks thru separate pointers, to allow yyoverflow
+ to reallocate them elsewhere. */
+
+ /* The state stack. */
+ yytype_int16 yyssa[YYINITDEPTH];
+ yytype_int16 *yyss;
+ yytype_int16 *yyssp;
+
+ /* The semantic value stack. */
+ YYSTYPE yyvsa[YYINITDEPTH];
+ YYSTYPE *yyvs;
+ YYSTYPE *yyvsp;
+
+ YYSIZE_T yystacksize;
+
+ /* Used to determine if this is the first time this instance has
+ been used. */
+ int yynew;
+ };
+
+#if (defined __STDC__ || defined __C99__FUNC__ \
+ || defined __cplusplus || defined _MSC_VER)
+int
+yyparse (void)
+#else
+int
+yyparse ()
+
+#endif
+{
+ return yypull_parse (0);
+}
+
+#if (defined __STDC__ || defined __C99__FUNC__ \
+ || defined __cplusplus || defined _MSC_VER)
+int
+yypull_parse (yypstate *yyps)
+#else
+int
+yypull_parse (yyps)
+ yypstate *yyps;
+#endif
+{
+ int yystatus;
+ yypstate *yyps_local;
+ int yychar;
+ YYSTYPE yylval;
+ if (yyps == 0)
+ {
+ yyps_local = yypstate_new ();
+ if (!yyps_local)
+ {
+ yyerror (YY_("memory exhausted"));
+ return 2;
+ }
+ }
+ else
+ yyps_local = yyps;
+ do {
+ yychar = YYLEX;
+ yystatus =
+ yypush_parse (yyps_local, yychar, &yylval);
+ } while (yystatus == YYPUSH_MORE);
+ if (yyps == 0)
+ yypstate_delete (yyps_local);
+ return yystatus;
+}
+
+/* Initialize the parser data structure. */
+#if (defined __STDC__ || defined __C99__FUNC__ \
+ || defined __cplusplus || defined _MSC_VER)
+yypstate *
+yypstate_new (void)
+#else
+yypstate *
+yypstate_new ()
+
+#endif
+{
+ yypstate *yyps;
+ yyps = (yypstate *) malloc (sizeof *yyps);
+ if (!yyps)
+ return 0;
+ yyps->yynew = 1;
+ return yyps;
+}
+
+#if (defined __STDC__ || defined __C99__FUNC__ \
+ || defined __cplusplus || defined _MSC_VER)
+void
+yypstate_delete (yypstate *yyps)
+#else
+void
+yypstate_delete (yyps)
+ yypstate *yyps;
+#endif
+{
+#ifndef yyoverflow
+ /* If the stack was reallocated but the parse did not complete, then the
+ stack still needs to be freed. */
+ if (!yyps->yynew && yyps->yyss != yyps->yyssa)
+ YYSTACK_FREE (yyps->yyss);
+#endif
+ free (yyps);
+}
+
+#define yynerrs yyps->yynerrs
+#define yystate yyps->yystate
+#define yyerrstatus yyps->yyerrstatus
+#define yyssa yyps->yyssa
+#define yyss yyps->yyss
+#define yyssp yyps->yyssp
+#define yyvsa yyps->yyvsa
+#define yyvs yyps->yyvs
+#define yyvsp yyps->yyvsp
+#define yystacksize yyps->yystacksize
+
+/*-------------------------.
+| yyparse or yypush_parse. |
+`-------------------------*/
+
+#if (defined __STDC__ || defined __C99__FUNC__ \
+ || defined __cplusplus || defined _MSC_VER)
+int
+yypush_parse (yypstate *yyps, int yypushed_char, YYSTYPE const *yypushed_val)
+#else
+int
+yypush_parse (yyps, yypushed_char, yypushed_val)
+ yypstate *yyps;
+ int yypushed_char;
+ YYSTYPE const *yypushed_val;
+#endif
+{
+/* The lookahead symbol. */
+int yychar;
+
+/* The semantic value of the lookahead symbol. */
+YYSTYPE yylval;
+
+
+ int yyn;
+ int yyresult;
+ /* Lookahead token as an internal (translated) token number. */
+ int yytoken;
+ /* The variables used to return semantic value and location from the
+ action routines. */
+ YYSTYPE yyval;
+
+#if YYERROR_VERBOSE
+ /* Buffer for error messages, and its allocated size. */
+ char yymsgbuf[128];
+ char *yymsg = yymsgbuf;
+ YYSIZE_T yymsg_alloc = sizeof yymsgbuf;
+#endif
+
+#define YYPOPSTACK(N) (yyvsp -= (N), yyssp -= (N))
+
+ /* The number of symbols on the RHS of the reduced rule.
+ Keep to zero when no symbol should be popped. */
+ int yylen = 0;
+
+ if (!yyps->yynew)
+ {
+ yyn = yypact[yystate];
+ goto yyread_pushed_token;
+ }
+
+ yytoken = 0;
+ yyss = yyssa;
+ yyvs = yyvsa;
+ yystacksize = YYINITDEPTH;
+
+ YYDPRINTF ((stderr, "Starting parse\n"));
+
+ yystate = 0;
+ yyerrstatus = 0;
+ yynerrs = 0;
+ yychar = YYEMPTY; /* Cause a token to be read. */
+
+ /* Initialize stack pointers.
+ Waste one element of value and location stack
+ so that they stay on the same level as the state stack.
+ The wasted elements are never initialized. */
+ yyssp = yyss;
+ yyvsp = yyvs;
+
+ goto yysetstate;
+
+/*------------------------------------------------------------.
+| yynewstate -- Push a new state, which is found in yystate. |
+`------------------------------------------------------------*/
+ yynewstate:
+ /* In all cases, when you get here, the value and location stacks
+ have just been pushed. So pushing a state here evens the stacks. */
+ yyssp++;
+
+ yysetstate:
+ *yyssp = yystate;
+
+ if (yyss + yystacksize - 1 <= yyssp)
+ {
+ /* Get the current used size of the three stacks, in elements. */
+ YYSIZE_T yysize = yyssp - yyss + 1;
+
+#ifdef yyoverflow
+ {
+ /* Give user a chance to reallocate the stack. Use copies of
+ these so that the &'s don't force the real ones into
+ memory. */
+ YYSTYPE *yyvs1 = yyvs;
+ yytype_int16 *yyss1 = yyss;
+
+ /* Each stack pointer address is followed by the size of the
+ data in use in that stack, in bytes. This used to be a
+ conditional around just the two extra args, but that might
+ be undefined if yyoverflow is a macro. */
+ yyoverflow (YY_("memory exhausted"),
+ &yyss1, yysize * sizeof (*yyssp),
+ &yyvs1, yysize * sizeof (*yyvsp),
+ &yystacksize);
+
+ yyss = yyss1;
+ yyvs = yyvs1;
+ }
+#else /* no yyoverflow */
+# ifndef YYSTACK_RELOCATE
+ goto yyexhaustedlab;
+# else
+ /* Extend the stack our own way. */
+ if (YYMAXDEPTH <= yystacksize)
+ goto yyexhaustedlab;
+ yystacksize *= 2;
+ if (YYMAXDEPTH < yystacksize)
+ yystacksize = YYMAXDEPTH;
+
+ {
+ yytype_int16 *yyss1 = yyss;
+ union yyalloc *yyptr =
+ (union yyalloc *) YYSTACK_ALLOC (YYSTACK_BYTES (yystacksize));
+ if (! yyptr)
+ goto yyexhaustedlab;
+ YYSTACK_RELOCATE (yyss_alloc, yyss);
+ YYSTACK_RELOCATE (yyvs_alloc, yyvs);
+# undef YYSTACK_RELOCATE
+ if (yyss1 != yyssa)
+ YYSTACK_FREE (yyss1);
+ }
+# endif
+#endif /* no yyoverflow */
+
+ yyssp = yyss + yysize - 1;
+ yyvsp = yyvs + yysize - 1;
+
+ YYDPRINTF ((stderr, "Stack size increased to %lu\n",
+ (unsigned long int) yystacksize));
+
+ if (yyss + yystacksize - 1 <= yyssp)
+ YYABORT;
+ }
+
+ YYDPRINTF ((stderr, "Entering state %d\n", yystate));
+
+ if (yystate == YYFINAL)
+ YYACCEPT;
+
+ goto yybackup;
+
+/*-----------.
+| yybackup. |
+`-----------*/
+yybackup:
+
+ /* Do appropriate processing given the current state. Read a
+ lookahead token if we need one and don't already have one. */
+
+ /* First try to decide what to do without reference to lookahead token. */
+ yyn = yypact[yystate];
+ if (yyn == YYPACT_NINF)
+ goto yydefault;
+
+ /* Not known => get a lookahead token if don't already have one. */
+
+ /* YYCHAR is either YYEMPTY or YYEOF or a valid lookahead symbol. */
+ if (yychar == YYEMPTY)
+ {
+ if (!yyps->yynew)
+ {
+ YYDPRINTF ((stderr, "Return for a new token:\n"));
+ yyresult = YYPUSH_MORE;
+ goto yypushreturn;
+ }
+ yyps->yynew = 0;
+yyread_pushed_token:
+ YYDPRINTF ((stderr, "Reading a token: "));
+ yychar = yypushed_char;
+ if (yypushed_val)
+ yylval = *yypushed_val;
+ }
+
+ if (yychar <= YYEOF)
+ {
+ yychar = yytoken = YYEOF;
+ YYDPRINTF ((stderr, "Now at end of input.\n"));
+ }
+ else
+ {
+ yytoken = YYTRANSLATE (yychar);
+ YY_SYMBOL_PRINT ("Next token is", yytoken, &yylval, &yylloc);
+ }
+
+ /* If the proper action on seeing token YYTOKEN is to reduce or to
+ detect an error, take that action. */
+ yyn += yytoken;
+ if (yyn < 0 || YYLAST < yyn || yycheck[yyn] != yytoken)
+ goto yydefault;
+ yyn = yytable[yyn];
+ if (yyn <= 0)
+ {
+ if (yyn == 0 || yyn == YYTABLE_NINF)
+ goto yyerrlab;
+ yyn = -yyn;
+ goto yyreduce;
+ }
+
+ /* Count tokens shifted since error; after three, turn off error
+ status. */
+ if (yyerrstatus)
+ yyerrstatus--;
+
+ /* Shift the lookahead token. */
+ YY_SYMBOL_PRINT ("Shifting", yytoken, &yylval, &yylloc);
+
+ /* Discard the shifted token. */
+ yychar = YYEMPTY;
+
+ yystate = yyn;
+ *++yyvsp = yylval;
+
+ goto yynewstate;
+
+
+/*-----------------------------------------------------------.
+| yydefault -- do the default action for the current state. |
+`-----------------------------------------------------------*/
+yydefault:
+ yyn = yydefact[yystate];
+ if (yyn == 0)
+ goto yyerrlab;
+ goto yyreduce;
+
+
+/*-----------------------------.
+| yyreduce -- Do a reduction. |
+`-----------------------------*/
+yyreduce:
+ /* yyn is the number of a rule to reduce with. */
+ yylen = yyr2[yyn];
+
+ /* If YYLEN is nonzero, implement the default value of the action:
+ `$$ = $1'.
+
+ Otherwise, the following line sets YYVAL to garbage.
+ This behavior is undocumented and Bison
+ users should not rely upon it. Assigning to YYVAL
+ unconditionally makes the parser a bit smaller, and it avoids a
+ GCC warning that YYVAL may be used uninitialized. */
+ yyval = yyvsp[1-yylen];
+
+
+ YY_REDUCE_PRINT (yyn);
+ switch (yyn)
+ {
+ case 2:
+
+/* Line 1455 of yacc.c */
+#line 215 "./js-parser/Grammar.y"
+ { PRINT_LINE; (yyval.node) = node_new (TOK_NAME, PN_NAME); (yyval.node)->pn_u.name.name = (yyvsp[(1) - (1)].name).iname; (yyval.node)->pn_pos = (yyvsp[(1) - (1)].name).pos; (yyval.node)->pn_u.name.isconst = 0;;}
+ break;
+
+ case 3:
+
+/* Line 1455 of yacc.c */
+#line 219 "./js-parser/Grammar.y"
+ { PRINT_LINE; (yyval.node) = NULL;;}
+ break;
+
+ case 4:
+
+/* Line 1455 of yacc.c */
+#line 220 "./js-parser/Grammar.y"
+ { PRINT_LINE; (yyval.node) = NULL;;}
+ break;
+
+ case 5:
+
+/* Line 1455 of yacc.c */
+#line 224 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = NULL;;}
+ break;
+
+ case 6:
+
+/* Line 1455 of yacc.c */
+#line 225 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = NULL;;}
+ break;
+
+ case 7:
+
+/* Line 1455 of yacc.c */
+#line 229 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = NULL;;}
+ break;
+
+ case 8:
+
+/* Line 1455 of yacc.c */
+#line 230 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = NULL;;}
+ break;
+
+ case 9:
+
+/* Line 1455 of yacc.c */
+#line 234 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = NULL;;}
+ break;
+
+ case 10:
+
+/* Line 1455 of yacc.c */
+#line 235 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = NULL;;}
+ break;
+
+ case 11:
+
+/* Line 1455 of yacc.c */
+#line 236 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = NULL;;}
+ break;
+
+ case 12:
+
+/* Line 1455 of yacc.c */
+#line 240 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = NULL;;}
+ break;
+
+ case 13:
+
+/* Line 1455 of yacc.c */
+#line 241 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = NULL;;}
+ break;
+
+ case 16:
+
+/* Line 1455 of yacc.c */
+#line 251 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = NULL;;}
+ break;
+
+ case 17:
+
+/* Line 1455 of yacc.c */
+#line 252 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = NULL;;}
+ break;
+
+ case 18:
+
+/* Line 1455 of yacc.c */
+#line 253 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = NULL;;}
+ break;
+
+ case 19:
+
+/* Line 1455 of yacc.c */
+#line 254 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = NULL;;}
+ break;
+
+ case 20:
+
+/* Line 1455 of yacc.c */
+#line 255 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = NULL;;}
+ break;
+
+ case 21:
+
+/* Line 1455 of yacc.c */
+#line 256 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = NULL;;}
+ break;
+
+ case 22:
+
+/* Line 1455 of yacc.c */
+#line 260 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = NULL;;}
+ break;
+
+ case 23:
+
+/* Line 1455 of yacc.c */
+#line 261 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = NULL;;}
+ break;
+
+ case 24:
+
+/* Line 1455 of yacc.c */
+#line 262 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = NULL;/* TODO: FIX AtomEscape = IDENT*/ ;}
+ break;
+
+ case 25:
+
+/* Line 1455 of yacc.c */
+#line 263 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = NULL;/* TODO: FIX AtomEscape = IDENT*/ ;}
+ break;
+
+ case 26:
+
+/* Line 1455 of yacc.c */
+#line 264 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = NULL;;}
+ break;
+
+ case 27:
+
+/* Line 1455 of yacc.c */
+#line 265 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = NULL;;}
+ break;
+
+ case 28:
+
+/* Line 1455 of yacc.c */
+#line 266 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = NULL;;}
+ break;
+
+ case 29:
+
+/* Line 1455 of yacc.c */
+#line 267 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = NULL;;}
+ break;
+
+ case 30:
+
+/* Line 1455 of yacc.c */
+#line 268 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = NULL;;}
+ break;
+
+ case 31:
+
+/* Line 1455 of yacc.c */
+#line 272 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = NULL;;}
+ break;
+
+ case 32:
+
+/* Line 1455 of yacc.c */
+#line 276 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = NULL;;}
+ break;
+
+ case 33:
+
+/* Line 1455 of yacc.c */
+#line 277 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = NULL;;}
+ break;
+
+ case 34:
+
+/* Line 1455 of yacc.c */
+#line 281 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = NULL;;}
+ break;
+
+ case 35:
+
+/* Line 1455 of yacc.c */
+#line 282 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = NULL;;}
+ break;
+
+ case 36:
+
+/* Line 1455 of yacc.c */
+#line 283 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = NULL;;}
+ break;
+
+ case 37:
+
+/* Line 1455 of yacc.c */
+#line 284 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = NULL;;}
+ break;
+
+ case 38:
+
+/* Line 1455 of yacc.c */
+#line 288 "./js-parser/Grammar.y"
+ { PRINT_LINE; (yyval.node) = node_new (TOK_PRIMARY, PN_NULLARY); (yyval.node)->pn_op = JSOP_NULL;;}
+ break;
+
+ case 39:
+
+/* Line 1455 of yacc.c */
+#line 289 "./js-parser/Grammar.y"
+ { PRINT_LINE; (yyval.node) = node_new (TOK_PRIMARY, PN_NULLARY); (yyval.node)->pn_op = JSOP_TRUE;;}
+ break;
+
+ case 40:
+
+/* Line 1455 of yacc.c */
+#line 290 "./js-parser/Grammar.y"
+ { PRINT_LINE; (yyval.node) = node_new (TOK_PRIMARY, PN_NULLARY); (yyval.node)->pn_op = JSOP_FALSE;;}
+ break;
+
+ case 41:
+
+/* Line 1455 of yacc.c */
+#line 291 "./js-parser/Grammar.y"
+ { PRINT_LINE; (yyval.node) = node_new (TOK_NUMBER, PN_NULLARY);;}
+ break;
+
+ case 42:
+
+/* Line 1455 of yacc.c */
+#line 292 "./js-parser/Grammar.y"
+ { PRINT_LINE; (yyval.node) = node_new (TOK_STRING, PN_NULLARY);;}
+ break;
+
+ case 43:
+
+/* Line 1455 of yacc.c */
+#line 296 "./js-parser/Grammar.y"
+ { PRINT_LINE;
+ (yyval.node) = node_new (TOK_COLON, PN_BINARY);
+ (yyval.node)->pn_u.binary.left = (yyvsp[(1) - (3)].node);
+ (yyval.node)->pn_u.binary.right = (yyvsp[(3) - (3)].node);
+ node_correct_position ((yyval.node), (yyvsp[(1) - (3)].node));
+ node_correct_position ((yyval.node), (yyvsp[(3) - (3)].node));
+;}
+ break;
+
+ case 44:
+
+/* Line 1455 of yacc.c */
+#line 303 "./js-parser/Grammar.y"
+ { PRINT_LINE;
+ (yyval.node) = node_new (TOK_COLON, PN_BINARY);
+ (yyval.node)->pn_u.binary.left = (yyvsp[(1) - (3)].node);
+ (yyval.node)->pn_u.binary.right = (yyvsp[(3) - (3)].node);
+ node_correct_position ((yyval.node), (yyvsp[(3) - (3)].node));
+;}
+ break;
+
+ case 45:
+
+/* Line 1455 of yacc.c */
+#line 309 "./js-parser/Grammar.y"
+ { PRINT_LINE;
+ (yyval.node) = node_new (TOK_COLON, PN_BINARY);
+ (yyval.node)->pn_u.binary.left = (yyvsp[(1) - (3)].node);
+ (yyval.node)->pn_u.binary.right = (yyvsp[(3) - (3)].node);
+ node_correct_position ((yyval.node), (yyvsp[(3) - (3)].node));
+;}
+ break;
+
+ case 46:
+
+/* Line 1455 of yacc.c */
+#line 315 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = NULL;;}
+ break;
+
+ case 47:
+
+/* Line 1455 of yacc.c */
+#line 317 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = NULL;;}
+ break;
+
+ case 48:
+
+/* Line 1455 of yacc.c */
+#line 321 "./js-parser/Grammar.y"
+ { PRINT_LINE;
+ (yyval.node) = node_new (TOK_RC, PN_LIST);
+ (yyval.node)->pn_u.list.head = (yyvsp[(1) - (1)].node);
+ node_correct_position ((yyval.node), (yyvsp[(1) - (1)].node));
+;}
+ break;
+
+ case 49:
+
+/* Line 1455 of yacc.c */
+#line 326 "./js-parser/Grammar.y"
+ { PRINT_LINE;
+ (yyval.node) = (yyvsp[(1) - (3)].node);
+ node_correct_position ((yyval.node), (yyvsp[(3) - (3)].node));
+ g_assert ((yyvsp[(1) - (3)].node)->pn_arity == PN_LIST);
+ if ((yyvsp[(1) - (3)].node)->pn_u.list.head) {
+ JSNode *i;
+ for (i = (yyvsp[(1) - (3)].node)->pn_u.list.head; i->pn_next != NULL; i = i->pn_next)
+ ;
+ i->pn_next = (yyvsp[(3) - (3)].node);
+ } else (yyvsp[(1) - (3)].node)->pn_u.list.head = (yyvsp[(3) - (3)].node);
+;}
+ break;
+
+ case 51:
+
+/* Line 1455 of yacc.c */
+#line 341 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = NULL;;}
+ break;
+
+ case 52:
+
+/* Line 1455 of yacc.c */
+#line 342 "./js-parser/Grammar.y"
+ { PRINT_LINE;
+ (yyval.node) = (yyvsp[(2) - (3)].node);
+ node_correct_position_end ((yyval.node), (yyvsp[(3) - (3)].intValue));
+;}
+ break;
+
+ case 53:
+
+/* Line 1455 of yacc.c */
+#line 347 "./js-parser/Grammar.y"
+ { PRINT_LINE;
+ (yyval.node) = (yyvsp[(2) - (4)].node);
+ node_correct_position_end ((yyval.node), (yyvsp[(4) - (4)].intValue));
+;}
+ break;
+
+ case 54:
+
+/* Line 1455 of yacc.c */
+#line 354 "./js-parser/Grammar.y"
+ { PRINT_LINE; (yyval.node) = node_new (TOK_PRIMARY, PN_NULLARY); (yyval.node)->pn_op = JSOP_THIS;;}
+ break;
+
+ case 57:
+
+/* Line 1455 of yacc.c */
+#line 357 "./js-parser/Grammar.y"
+ { PRINT_LINE; (yyval.node) = (yyvsp[(1) - (1)].node);;}
+ break;
+
+ case 58:
+
+/* Line 1455 of yacc.c */
+#line 358 "./js-parser/Grammar.y"
+ { PRINT_LINE; (yyval.node) = (yyvsp[(2) - (3)].node);;}
+ break;
+
+ case 59:
+
+/* Line 1455 of yacc.c */
+#line 362 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = NULL;;}
+ break;
+
+ case 60:
+
+/* Line 1455 of yacc.c */
+#line 363 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = NULL;;}
+ break;
+
+ case 61:
+
+/* Line 1455 of yacc.c */
+#line 364 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = NULL;;}
+ break;
+
+ case 62:
+
+/* Line 1455 of yacc.c */
+#line 368 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = NULL;;}
+ break;
+
+ case 63:
+
+/* Line 1455 of yacc.c */
+#line 370 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = NULL;;}
+ break;
+
+ case 64:
+
+/* Line 1455 of yacc.c */
+#line 374 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = NULL;;}
+ break;
+
+ case 66:
+
+/* Line 1455 of yacc.c */
+#line 379 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = NULL;;}
+ break;
+
+ case 67:
+
+/* Line 1455 of yacc.c */
+#line 380 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = NULL;;}
+ break;
+
+ case 70:
+
+/* Line 1455 of yacc.c */
+#line 386 "./js-parser/Grammar.y"
+ { PRINT_LINE; (yyval.node) = (yyvsp[(1) - (1)].node);;}
+ break;
+
+ case 71:
+
+/* Line 1455 of yacc.c */
+#line 387 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = NULL;;}
+ break;
+
+ case 72:
+
+/* Line 1455 of yacc.c */
+#line 388 "./js-parser/Grammar.y"
+ { PRINT_LINE;
+ (yyval.node) = node_new ( TOK_DOT, PN_NAME);
+ (yyval.node)->pn_u.name.expr = (yyvsp[(1) - (3)].node);
+ (yyval.node)->pn_u.name.name = (yyvsp[(3) - (3)].node);
+ node_correct_position ((yyval.node), (yyvsp[(1) - (3)].node));
+ node_correct_position ((yyval.node), (yyvsp[(3) - (3)].node));
+;}
+ break;
+
+ case 73:
+
+/* Line 1455 of yacc.c */
+#line 395 "./js-parser/Grammar.y"
+ { PRINT_LINE;
+ (yyval.node) = node_new ( TOK_NEW, PN_LIST);
+ (yyval.node)->pn_u.list.head = (yyvsp[(2) - (3)].node);
+ (yyvsp[(2) - (3)].node)->pn_next = (yyvsp[(3) - (3)].node);
+ node_correct_position ((yyval.node), (yyvsp[(2) - (3)].node));
+ node_correct_position ((yyval.node), (yyvsp[(3) - (3)].node));
+;}
+ break;
+
+ case 75:
+
+/* Line 1455 of yacc.c */
+#line 406 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = NULL;;}
+ break;
+
+ case 76:
+
+/* Line 1455 of yacc.c */
+#line 407 "./js-parser/Grammar.y"
+ { PRINT_LINE;
+ (yyval.node) = node_new ( TOK_DOT, PN_NAME);
+ (yyval.node)->pn_u.name.expr = (yyvsp[(1) - (3)].node);
+ (yyval.node)->pn_u.name.name = (yyvsp[(3) - (3)].node);
+ node_correct_position ((yyval.node), (yyvsp[(1) - (3)].node));
+ node_correct_position ((yyval.node), (yyvsp[(3) - (3)].node));
+;}
+ break;
+
+ case 77:
+
+/* Line 1455 of yacc.c */
+#line 414 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = NULL;;}
+ break;
+
+ case 79:
+
+/* Line 1455 of yacc.c */
+#line 419 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = NULL;;}
+ break;
+
+ case 81:
+
+/* Line 1455 of yacc.c */
+#line 424 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = NULL;;}
+ break;
+
+ case 82:
+
+/* Line 1455 of yacc.c */
+#line 428 "./js-parser/Grammar.y"
+ { PRINT_LINE;
+ (yyval.node) = node_new ( TOK_LP, PN_LIST);
+ (yyvsp[(1) - (2)].node)->pn_next = (yyvsp[(2) - (2)].node);
+ (yyval.node)->pn_u.list.head = (yyvsp[(1) - (2)].node);
+ node_correct_position ((yyval.node), (yyvsp[(1) - (2)].node));
+ node_correct_position ((yyval.node), (yyvsp[(2) - (2)].node));
+;}
+ break;
+
+ case 83:
+
+/* Line 1455 of yacc.c */
+#line 435 "./js-parser/Grammar.y"
+ { PRINT_LINE;
+ (yyval.node) = node_new ( TOK_LP, PN_LIST);
+ (yyvsp[(1) - (2)].node)->pn_next = (yyvsp[(2) - (2)].node);
+ (yyval.node)->pn_u.list.head = (yyvsp[(1) - (2)].node);
+ node_correct_position ((yyval.node), (yyvsp[(1) - (2)].node));
+ node_correct_position ((yyval.node), (yyvsp[(2) - (2)].node));
+;}
+ break;
+
+ case 84:
+
+/* Line 1455 of yacc.c */
+#line 442 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = NULL;;}
+ break;
+
+ case 85:
+
+/* Line 1455 of yacc.c */
+#line 443 "./js-parser/Grammar.y"
+ { PRINT_LINE;
+ (yyval.node) = node_new ( TOK_DOT, PN_NAME);
+ (yyval.node)->pn_u.name.expr = (yyvsp[(1) - (3)].node);
+ (yyval.node)->pn_u.name.name = (yyvsp[(3) - (3)].node);
+ node_correct_position ((yyval.node), (yyvsp[(1) - (3)].node));
+ node_correct_position ((yyval.node), (yyvsp[(3) - (3)].node));
+;}
+ break;
+
+ case 86:
+
+/* Line 1455 of yacc.c */
+#line 453 "./js-parser/Grammar.y"
+ { PRINT_LINE;
+ (yyval.node) = node_new ( TOK_LP, PN_LIST);
+ (yyvsp[(1) - (2)].node)->pn_next = (yyvsp[(2) - (2)].node);
+ (yyval.node)->pn_u.list.head = (yyvsp[(1) - (2)].node);
+ node_correct_position ((yyval.node), (yyvsp[(1) - (2)].node));
+ node_correct_position ((yyval.node), (yyvsp[(2) - (2)].node));
+;}
+ break;
+
+ case 87:
+
+/* Line 1455 of yacc.c */
+#line 460 "./js-parser/Grammar.y"
+ { PRINT_LINE;
+ (yyval.node) = node_new ( TOK_LP, PN_LIST);
+ (yyvsp[(1) - (2)].node)->pn_next = (yyvsp[(2) - (2)].node);
+ (yyval.node)->pn_u.list.head = (yyvsp[(1) - (2)].node);
+ node_correct_position ((yyval.node), (yyvsp[(1) - (2)].node));
+ node_correct_position ((yyval.node), (yyvsp[(2) - (2)].node));
+;}
+ break;
+
+ case 88:
+
+/* Line 1455 of yacc.c */
+#line 467 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = NULL;;}
+ break;
+
+ case 89:
+
+/* Line 1455 of yacc.c */
+#line 468 "./js-parser/Grammar.y"
+ { PRINT_LINE;
+ (yyval.node) = node_new ( TOK_DOT, PN_NAME);
+ (yyval.node)->pn_u.name.expr = (yyvsp[(1) - (3)].node);
+ (yyval.node)->pn_u.name.name = (yyvsp[(3) - (3)].node);
+ node_correct_position ((yyval.node), (yyvsp[(1) - (3)].node));
+ node_correct_position ((yyval.node), (yyvsp[(3) - (3)].node));
+;}
+ break;
+
+ case 90:
+
+/* Line 1455 of yacc.c */
+#line 478 "./js-parser/Grammar.y"
+ { PRINT_LINE_NOTNEED; (yyval.node) = NULL;;}
+ break;
+
+ case 91:
+
+/* Line 1455 of yacc.c */
+#line 479 "./js-parser/Grammar.y"
+ { PRINT_LINE; (yyval.node) = (yyvsp[(2) - (3)].node);;}
+ break;
+
+ case 92:
+
+/* Line 1455 of yacc.c */
+#line 483 "./js-parser/Grammar.y"
+ { PRINT_LINE; (yyval.node) = (yyvsp[(1) - (1)].node);;}
+ break;
+
+ case 93:
+
+/* Line 1455 of yacc.c */
+#line 484 "./js-parser/Grammar.y"
+ { PRINT_LINE;
+ (yyval.node) = (yyvsp[(1) - (3)].node);
+ if ((yyvsp[(1) - (3)].node)) (yyvsp[(1) - (3)].node)->pn_next = (yyvsp[(3) - (3)].node);
+ else (yyval.node) = (yyvsp[(3) - (3)].node);
+ node_correct_position ((yyval.node), (yyvsp[(3) - (3)].node));
+;}
+ break;
+
+ case 99:
+
+/* Line 1455 of yacc.c */
+#line 504 "./js-parser/Grammar.y"
+ { PRINT_LINE; (yyval.node) = (yyvsp[(1) - (2)].node);;}
+ break;
+
+ case 100:
+
+/* Line 1455 of yacc.c */
+#line 505 "./js-parser/Grammar.y"
+ { PRINT_LINE; (yyval.node) = (yyvsp[(1) - (2)].node);;}
+ break;
+
+ case 102:
+
+/* Line 1455 of yacc.c */
+#line 510 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = NULL;;}
+ break;
+
+ case 103:
+
+/* Line 1455 of yacc.c */
+#line 511 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = NULL;;}
+ break;
+
+ case 104:
+
+/* Line 1455 of yacc.c */
+#line 515 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = NULL;;}
+ break;
+
+ case 105:
+
+/* Line 1455 of yacc.c */
+#line 516 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = NULL;;}
+ break;
+
+ case 106:
+
+/* Line 1455 of yacc.c */
+#line 517 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = NULL;;}
+ break;
+
+ case 107:
+
+/* Line 1455 of yacc.c */
+#line 518 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = NULL;;}
+ break;
+
+ case 108:
+
+/* Line 1455 of yacc.c */
+#line 519 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = NULL;;}
+ break;
+
+ case 109:
+
+/* Line 1455 of yacc.c */
+#line 520 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = NULL;;}
+ break;
+
+ case 110:
+
+/* Line 1455 of yacc.c */
+#line 521 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = NULL;;}
+ break;
+
+ case 111:
+
+/* Line 1455 of yacc.c */
+#line 522 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = NULL;;}
+ break;
+
+ case 112:
+
+/* Line 1455 of yacc.c */
+#line 523 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = NULL;;}
+ break;
+
+ case 113:
+
+/* Line 1455 of yacc.c */
+#line 524 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = NULL;;}
+ break;
+
+ case 114:
+
+/* Line 1455 of yacc.c */
+#line 525 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = NULL;;}
+ break;
+
+ case 120:
+
+/* Line 1455 of yacc.c */
+#line 539 "./js-parser/Grammar.y"
+ { PRINT_LINE; (yyval.node) = (yyvsp[(3) - (3)].node);;}
+ break;
+
+ case 121:
+
+/* Line 1455 of yacc.c */
+#line 540 "./js-parser/Grammar.y"
+ { PRINT_LINE; (yyval.node) = (yyvsp[(3) - (3)].node);;}
+ break;
+
+ case 122:
+
+/* Line 1455 of yacc.c */
+#line 541 "./js-parser/Grammar.y"
+ { PRINT_LINE; (yyval.node) = (yyvsp[(3) - (3)].node);;}
+ break;
+
+ case 124:
+
+/* Line 1455 of yacc.c */
+#line 547 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = (yyvsp[(3) - (3)].node);;}
+ break;
+
+ case 125:
+
+/* Line 1455 of yacc.c */
+#line 549 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = (yyvsp[(3) - (3)].node);;}
+ break;
+
+ case 126:
+
+/* Line 1455 of yacc.c */
+#line 551 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = (yyvsp[(3) - (3)].node);;}
+ break;
+
+ case 128:
+
+/* Line 1455 of yacc.c */
+#line 556 "./js-parser/Grammar.y"
+ { PRINT_LINE; (yyval.node) = (yyvsp[(3) - (3)].node);;}
+ break;
+
+ case 129:
+
+/* Line 1455 of yacc.c */
+#line 557 "./js-parser/Grammar.y"
+ { PRINT_LINE; (yyval.node) = (yyvsp[(3) - (3)].node);;}
+ break;
+
+ case 131:
+
+/* Line 1455 of yacc.c */
+#line 563 "./js-parser/Grammar.y"
+ { PRINT_LINE; (yyval.node) = (yyvsp[(3) - (3)].node);;}
+ break;
+
+ case 132:
+
+/* Line 1455 of yacc.c */
+#line 565 "./js-parser/Grammar.y"
+ { PRINT_LINE; (yyval.node) = (yyvsp[(3) - (3)].node);;}
+ break;
+
+ case 134:
+
+/* Line 1455 of yacc.c */
+#line 570 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = NULL;;}
+ break;
+
+ case 135:
+
+/* Line 1455 of yacc.c */
+#line 571 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = NULL;;}
+ break;
+
+ case 136:
+
+/* Line 1455 of yacc.c */
+#line 572 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = NULL;;}
+ break;
+
+ case 138:
+
+/* Line 1455 of yacc.c */
+#line 577 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = NULL;;}
+ break;
+
+ case 139:
+
+/* Line 1455 of yacc.c */
+#line 578 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = NULL;;}
+ break;
+
+ case 140:
+
+/* Line 1455 of yacc.c */
+#line 579 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = NULL;;}
+ break;
+
+ case 142:
+
+/* Line 1455 of yacc.c */
+#line 584 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = NULL;;}
+ break;
+
+ case 143:
+
+/* Line 1455 of yacc.c */
+#line 585 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = NULL;;}
+ break;
+
+ case 144:
+
+/* Line 1455 of yacc.c */
+#line 586 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = NULL;;}
+ break;
+
+ case 145:
+
+/* Line 1455 of yacc.c */
+#line 587 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = NULL;;}
+ break;
+
+ case 146:
+
+/* Line 1455 of yacc.c */
+#line 588 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = NULL;;}
+ break;
+
+ case 147:
+
+/* Line 1455 of yacc.c */
+#line 589 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = NULL;;}
+ break;
+
+ case 149:
+
+/* Line 1455 of yacc.c */
+#line 594 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = NULL;;}
+ break;
+
+ case 150:
+
+/* Line 1455 of yacc.c */
+#line 595 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = NULL;;}
+ break;
+
+ case 151:
+
+/* Line 1455 of yacc.c */
+#line 596 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = NULL;;}
+ break;
+
+ case 152:
+
+/* Line 1455 of yacc.c */
+#line 597 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = NULL;;}
+ break;
+
+ case 153:
+
+/* Line 1455 of yacc.c */
+#line 599 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = NULL;;}
+ break;
+
+ case 155:
+
+/* Line 1455 of yacc.c */
+#line 604 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = NULL;;}
+ break;
+
+ case 156:
+
+/* Line 1455 of yacc.c */
+#line 605 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = NULL;;}
+ break;
+
+ case 157:
+
+/* Line 1455 of yacc.c */
+#line 606 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = NULL;;}
+ break;
+
+ case 158:
+
+/* Line 1455 of yacc.c */
+#line 607 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = NULL;;}
+ break;
+
+ case 159:
+
+/* Line 1455 of yacc.c */
+#line 609 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = NULL;;}
+ break;
+
+ case 160:
+
+/* Line 1455 of yacc.c */
+#line 611 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = NULL;;}
+ break;
+
+ case 162:
+
+/* Line 1455 of yacc.c */
+#line 616 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = NULL;;}
+ break;
+
+ case 163:
+
+/* Line 1455 of yacc.c */
+#line 617 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = NULL;;}
+ break;
+
+ case 164:
+
+/* Line 1455 of yacc.c */
+#line 618 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = NULL;;}
+ break;
+
+ case 165:
+
+/* Line 1455 of yacc.c */
+#line 619 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = NULL;;}
+ break;
+
+ case 167:
+
+/* Line 1455 of yacc.c */
+#line 625 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = NULL;;}
+ break;
+
+ case 168:
+
+/* Line 1455 of yacc.c */
+#line 627 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = NULL;;}
+ break;
+
+ case 169:
+
+/* Line 1455 of yacc.c */
+#line 629 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = NULL;;}
+ break;
+
+ case 170:
+
+/* Line 1455 of yacc.c */
+#line 631 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = NULL;;}
+ break;
+
+ case 172:
+
+/* Line 1455 of yacc.c */
+#line 637 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = NULL;;}
+ break;
+
+ case 173:
+
+/* Line 1455 of yacc.c */
+#line 638 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = NULL;;}
+ break;
+
+ case 174:
+
+/* Line 1455 of yacc.c */
+#line 640 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = NULL;;}
+ break;
+
+ case 175:
+
+/* Line 1455 of yacc.c */
+#line 642 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = NULL;;}
+ break;
+
+ case 177:
+
+/* Line 1455 of yacc.c */
+#line 647 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = NULL;;}
+ break;
+
+ case 179:
+
+/* Line 1455 of yacc.c */
+#line 653 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = NULL;;}
+ break;
+
+ case 181:
+
+/* Line 1455 of yacc.c */
+#line 658 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = NULL;;}
+ break;
+
+ case 183:
+
+/* Line 1455 of yacc.c */
+#line 663 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = NULL;;}
+ break;
+
+ case 185:
+
+/* Line 1455 of yacc.c */
+#line 669 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = NULL;;}
+ break;
+
+ case 187:
+
+/* Line 1455 of yacc.c */
+#line 675 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = NULL;;}
+ break;
+
+ case 189:
+
+/* Line 1455 of yacc.c */
+#line 680 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = NULL;;}
+ break;
+
+ case 191:
+
+/* Line 1455 of yacc.c */
+#line 686 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = NULL;;}
+ break;
+
+ case 193:
+
+/* Line 1455 of yacc.c */
+#line 692 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = NULL;;}
+ break;
+
+ case 195:
+
+/* Line 1455 of yacc.c */
+#line 697 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = NULL;;}
+ break;
+
+ case 197:
+
+/* Line 1455 of yacc.c */
+#line 703 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = NULL;;}
+ break;
+
+ case 199:
+
+/* Line 1455 of yacc.c */
+#line 709 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = NULL;;}
+ break;
+
+ case 201:
+
+/* Line 1455 of yacc.c */
+#line 714 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = NULL;;}
+ break;
+
+ case 203:
+
+/* Line 1455 of yacc.c */
+#line 720 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = NULL;;}
+ break;
+
+ case 205:
+
+/* Line 1455 of yacc.c */
+#line 725 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = NULL;;}
+ break;
+
+ case 207:
+
+/* Line 1455 of yacc.c */
+#line 731 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = NULL;;}
+ break;
+
+ case 209:
+
+/* Line 1455 of yacc.c */
+#line 737 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = NULL;;}
+ break;
+
+ case 211:
+
+/* Line 1455 of yacc.c */
+#line 743 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = NULL;;}
+ break;
+
+ case 213:
+
+/* Line 1455 of yacc.c */
+#line 749 "./js-parser/Grammar.y"
+ { PRINT_LINE;
+ (yyval.node) = node_new (TOK_ASSIGN, PN_BINARY);
+ (yyval.node)->pn_u.binary.left = (yyvsp[(1) - (3)].node);
+ (yyval.node)->pn_u.binary.right = (yyvsp[(3) - (3)].node);
+ node_correct_position ((yyval.node), (yyvsp[(1) - (3)].node));
+ node_correct_position ((yyval.node), (yyvsp[(3) - (3)].node));
+;}
+ break;
+
+ case 215:
+
+/* Line 1455 of yacc.c */
+#line 761 "./js-parser/Grammar.y"
+ { PRINT_LINE;
+ (yyval.node) = node_new (TOK_ASSIGN, PN_BINARY);
+ (yyval.node)->pn_u.binary.left = (yyvsp[(1) - (3)].node);
+ (yyval.node)->pn_u.binary.right = (yyvsp[(3) - (3)].node);
+ node_correct_position ((yyval.node), (yyvsp[(1) - (3)].node));
+ node_correct_position ((yyval.node), (yyvsp[(3) - (3)].node));
+;}
+ break;
+
+ case 217:
+
+/* Line 1455 of yacc.c */
+#line 773 "./js-parser/Grammar.y"
+ { PRINT_LINE;
+ (yyval.node) = node_new (TOK_ASSIGN, PN_BINARY);
+ (yyval.node)->pn_u.binary.left = (yyvsp[(1) - (3)].node);
+ (yyval.node)->pn_u.binary.right = (yyvsp[(3) - (3)].node);
+ node_correct_position ((yyval.node), (yyvsp[(1) - (3)].node));
+ node_correct_position ((yyval.node), (yyvsp[(3) - (3)].node));
+;}
+ break;
+
+ case 218:
+
+/* Line 1455 of yacc.c */
+#line 783 "./js-parser/Grammar.y"
+ { PRINT_LINE_NOTNEED; (yyval.node) = NULL;;}
+ break;
+
+ case 219:
+
+/* Line 1455 of yacc.c */
+#line 784 "./js-parser/Grammar.y"
+ { PRINT_LINE_NOTNEED; (yyval.node) = NULL;;}
+ break;
+
+ case 220:
+
+/* Line 1455 of yacc.c */
+#line 785 "./js-parser/Grammar.y"
+ { PRINT_LINE_NOTNEED; (yyval.node) = NULL;;}
+ break;
+
+ case 221:
+
+/* Line 1455 of yacc.c */
+#line 786 "./js-parser/Grammar.y"
+ { PRINT_LINE_NOTNEED; (yyval.node) = NULL;;}
+ break;
+
+ case 222:
+
+/* Line 1455 of yacc.c */
+#line 787 "./js-parser/Grammar.y"
+ { PRINT_LINE_NOTNEED; (yyval.node) = NULL;;}
+ break;
+
+ case 223:
+
+/* Line 1455 of yacc.c */
+#line 788 "./js-parser/Grammar.y"
+ { PRINT_LINE_NOTNEED; (yyval.node) = NULL;;}
+ break;
+
+ case 224:
+
+/* Line 1455 of yacc.c */
+#line 789 "./js-parser/Grammar.y"
+ { PRINT_LINE_NOTNEED; (yyval.node) = NULL;;}
+ break;
+
+ case 225:
+
+/* Line 1455 of yacc.c */
+#line 790 "./js-parser/Grammar.y"
+ { PRINT_LINE_NOTNEED; (yyval.node) = NULL;;}
+ break;
+
+ case 226:
+
+/* Line 1455 of yacc.c */
+#line 791 "./js-parser/Grammar.y"
+ { PRINT_LINE_NOTNEED; (yyval.node) = NULL;;}
+ break;
+
+ case 227:
+
+/* Line 1455 of yacc.c */
+#line 792 "./js-parser/Grammar.y"
+ { PRINT_LINE_NOTNEED; (yyval.node) = NULL;;}
+ break;
+
+ case 228:
+
+/* Line 1455 of yacc.c */
+#line 793 "./js-parser/Grammar.y"
+ { PRINT_LINE_NOTNEED; (yyval.node) = NULL;;}
+ break;
+
+ case 229:
+
+/* Line 1455 of yacc.c */
+#line 794 "./js-parser/Grammar.y"
+ { PRINT_LINE_NOTNEED; (yyval.node) = NULL;;}
+ break;
+
+ case 231:
+
+/* Line 1455 of yacc.c */
+#line 799 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = (yyvsp[(3) - (3)].node);;}
+ break;
+
+ case 233:
+
+/* Line 1455 of yacc.c */
+#line 804 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = (yyvsp[(3) - (3)].node);;}
+ break;
+
+ case 235:
+
+/* Line 1455 of yacc.c */
+#line 809 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = (yyvsp[(3) - (3)].node);;}
+ break;
+
+ case 253:
+
+/* Line 1455 of yacc.c */
+#line 833 "./js-parser/Grammar.y"
+ { PRINT_LINE;
+ (yyval.node) = node_new (TOK_LC, PN_LIST);
+ (yyval.node)->pn_u.list.head = NULL;
+ node_correct_position_end ((yyval.node), (yyvsp[(2) - (2)].intValue));
+;}
+ break;
+
+ case 254:
+
+/* Line 1455 of yacc.c */
+#line 838 "./js-parser/Grammar.y"
+ { PRINT_LINE;
+ (yyval.node) = node_new (TOK_LC, PN_LIST);
+ (yyval.node)->pn_u.list.head = (yyvsp[(2) - (3)].node);
+ node_correct_position ((yyval.node), (yyvsp[(2) - (3)].node));
+ node_correct_position_end ((yyval.node), (yyvsp[(3) - (3)].intValue));
+;}
+ break;
+
+ case 255:
+
+/* Line 1455 of yacc.c */
+#line 847 "./js-parser/Grammar.y"
+ { PRINT_LINE; (yyval.node) = (yyvsp[(2) - (3)].node);;}
+ break;
+
+ case 256:
+
+/* Line 1455 of yacc.c */
+#line 848 "./js-parser/Grammar.y"
+ { PRINT_LINE; (yyval.node) = (yyvsp[(2) - (3)].node); AUTO_SEMICOLON (node_get_line ((yyvsp[(2) - (3)].node))); ;}
+ break;
+
+ case 257:
+
+/* Line 1455 of yacc.c */
+#line 852 "./js-parser/Grammar.y"
+ { PRINT_LINE;
+ (yyval.node) = node_new (TOK_VAR, PN_LIST);
+ (yyval.node)->pn_u.list.head = (yyvsp[(1) - (1)].node);
+ node_correct_position ((yyval.node), (yyvsp[(1) - (1)].node));
+;}
+ break;
+
+ case 258:
+
+/* Line 1455 of yacc.c */
+#line 857 "./js-parser/Grammar.y"
+ { PRINT_LINE;
+ (yyval.node) = node_new (TOK_VAR, PN_LIST);
+ (yyval.node)->pn_u.list.head = (yyvsp[(1) - (2)].node);
+ (yyvsp[(1) - (2)].node)->pn_u.name.expr = (yyvsp[(2) - (2)].node);
+ node_correct_position ((yyval.node), (yyvsp[(1) - (2)].node));
+ node_correct_position ((yyval.node), (yyvsp[(2) - (2)].node));
+;}
+ break;
+
+ case 259:
+
+/* Line 1455 of yacc.c */
+#line 865 "./js-parser/Grammar.y"
+ { PRINT_LINE; (yyval.node) = (yyvsp[(1) - (3)].node);
+ if ((yyvsp[(3) - (3)].node)) {
+ g_assert ((yyvsp[(1) - (3)].node)->pn_arity == PN_LIST);
+ (yyvsp[(3) - (3)].node)->pn_next = (yyvsp[(1) - (3)].node)->pn_u.list.head;
+ (yyvsp[(1) - (3)].node)->pn_u.list.head = (yyvsp[(3) - (3)].node);
+ }
+ node_correct_position ((yyval.node), (yyvsp[(1) - (3)].node));
+ node_correct_position ((yyval.node), (yyvsp[(3) - (3)].node));
+;}
+ break;
+
+ case 260:
+
+/* Line 1455 of yacc.c */
+#line 875 "./js-parser/Grammar.y"
+ { PRINT_LINE;
+ if ((yyvsp[(3) - (4)].node)) {
+ g_assert ((yyvsp[(1) - (4)].node)->pn_arity == PN_LIST);
+ (yyvsp[(3) - (4)].node)->pn_next = (yyvsp[(1) - (4)].node)->pn_u.list.head;
+ (yyvsp[(1) - (4)].node)->pn_u.list.head = (yyvsp[(3) - (4)].node);
+ (yyvsp[(3) - (4)].node)->pn_u.name.expr = (yyvsp[(4) - (4)].node);
+ }
+ node_correct_position ((yyval.node), (yyvsp[(1) - (4)].node));
+ node_correct_position ((yyval.node), (yyvsp[(3) - (4)].node));
+ node_correct_position ((yyval.node), (yyvsp[(4) - (4)].node));
+;}
+ break;
+
+ case 261:
+
+/* Line 1455 of yacc.c */
+#line 889 "./js-parser/Grammar.y"
+ { PRINT_LINE;
+ (yyval.node) = node_new (TOK_VAR, PN_LIST);
+ (yyval.node)->pn_u.list.head = (yyvsp[(1) - (1)].node);
+ node_correct_position ((yyval.node), (yyvsp[(1) - (1)].node));
+;}
+ break;
+
+ case 262:
+
+/* Line 1455 of yacc.c */
+#line 894 "./js-parser/Grammar.y"
+ { PRINT_LINE;
+ (yyval.node) = node_new (TOK_VAR, PN_LIST);
+ (yyval.node)->pn_u.list.head = (yyvsp[(1) - (2)].node);
+ (yyvsp[(1) - (2)].node)->pn_u.name.expr = (yyvsp[(2) - (2)].node);
+ node_correct_position ((yyval.node), (yyvsp[(1) - (2)].node));
+ node_correct_position ((yyval.node), (yyvsp[(2) - (2)].node));
+;}
+ break;
+
+ case 263:
+
+/* Line 1455 of yacc.c */
+#line 902 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = NULL;;}
+ break;
+
+ case 264:
+
+/* Line 1455 of yacc.c */
+#line 904 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = NULL;;}
+ break;
+
+ case 265:
+
+/* Line 1455 of yacc.c */
+#line 908 "./js-parser/Grammar.y"
+ { PRINT_LINE; (yyval.node) = (yyvsp[(2) - (3)].node);;}
+ break;
+
+ case 266:
+
+/* Line 1455 of yacc.c */
+#line 910 "./js-parser/Grammar.y"
+ { PRINT_LINE; (yyval.node) = (yyvsp[(2) - (3)].node); AUTO_SEMICOLON (node_get_line ((yyvsp[(2) - (3)].node)));; ;}
+ break;
+
+ case 267:
+
+/* Line 1455 of yacc.c */
+#line 914 "./js-parser/Grammar.y"
+ { PRINT_LINE;
+ (yyval.node) = node_new (TOK_VAR, PN_LIST);
+ (yyval.node)->pn_u.list.head = (yyvsp[(1) - (1)].node);
+ node_correct_position ((yyval.node), (yyvsp[(1) - (1)].node));
+;}
+ break;
+
+ case 268:
+
+/* Line 1455 of yacc.c */
+#line 920 "./js-parser/Grammar.y"
+ { PRINT_LINE;
+ (yyval.node) = (yyvsp[(1) - (3)].node);
+ if ((yyvsp[(3) - (3)].node)) {
+ g_assert ((yyvsp[(1) - (3)].node)->pn_arity == PN_LIST);
+ (yyvsp[(3) - (3)].node)->pn_next = (yyvsp[(1) - (3)].node)->pn_u.list.head;
+ (yyvsp[(1) - (3)].node)->pn_u.list.head = (yyvsp[(3) - (3)].node);
+ }
+ node_correct_position ((yyval.node), (yyvsp[(3) - (3)].node));
+;}
+ break;
+
+ case 269:
+
+/* Line 1455 of yacc.c */
+#line 932 "./js-parser/Grammar.y"
+ { PRINT_LINE; (yyval.node) = (yyvsp[(1) - (1)].node); (yyvsp[(1) - (1)].node)->pn_u.name.isconst = 1;;}
+ break;
+
+ case 270:
+
+/* Line 1455 of yacc.c */
+#line 933 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO;
+ (yyval.node) = (yyvsp[(1) - (2)].node);
+ (yyval.node)->pn_u.name.expr = (yyvsp[(2) - (2)].node);
+ node_correct_position ((yyval.node), (yyvsp[(2) - (2)].node));
+;}
+ break;
+
+ case 271:
+
+/* Line 1455 of yacc.c */
+#line 941 "./js-parser/Grammar.y"
+ { PRINT_LINE; (yyval.node) = (yyvsp[(2) - (2)].node);;}
+ break;
+
+ case 272:
+
+/* Line 1455 of yacc.c */
+#line 945 "./js-parser/Grammar.y"
+ { PRINT_LINE; (yyval.node) = (yyvsp[(2) - (2)].node);;}
+ break;
+
+ case 273:
+
+/* Line 1455 of yacc.c */
+#line 949 "./js-parser/Grammar.y"
+ { PRINT_LINE; (yyval.node) = node_new (TOK_SEMI, PN_UNARY); (yyval.node)->pn_u.unary.kid = NULL;;}
+ break;
+
+ case 274:
+
+/* Line 1455 of yacc.c */
+#line 953 "./js-parser/Grammar.y"
+ { PRINT_LINE; (yyval.node) = (yyvsp[(1) - (2)].node);;}
+ break;
+
+ case 275:
+
+/* Line 1455 of yacc.c */
+#line 954 "./js-parser/Grammar.y"
+ { PRINT_LINE; (yyval.node) = (yyvsp[(1) - (2)].node); AUTO_SEMICOLON (node_get_line ((yyvsp[(1) - (2)].node)));; ;}
+ break;
+
+ case 276:
+
+/* Line 1455 of yacc.c */
+#line 959 "./js-parser/Grammar.y"
+ { PRINT_LINE; (yyval.node) = (yyvsp[(5) - (5)].node);;}
+ break;
+
+ case 277:
+
+/* Line 1455 of yacc.c */
+#line 961 "./js-parser/Grammar.y"
+ { PRINT_LINE; (yyval.node) = (yyvsp[(5) - (7)].node);;}
+ break;
+
+ case 278:
+
+/* Line 1455 of yacc.c */
+#line 965 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = NULL;;}
+ break;
+
+ case 279:
+
+/* Line 1455 of yacc.c */
+#line 966 "./js-parser/Grammar.y"
+ { PRINT_LINE; (yyval.node) = NULL; AUTO_SEMICOLON (node_get_line ((yyvsp[(5) - (7)].node)));;}
+ break;
+
+ case 280:
+
+/* Line 1455 of yacc.c */
+#line 967 "./js-parser/Grammar.y"
+ { PRINT_LINE; (yyval.node) = (yyvsp[(5) - (5)].node);;}
+ break;
+
+ case 281:
+
+/* Line 1455 of yacc.c */
+#line 969 "./js-parser/Grammar.y"
+ { PRINT_LINE; (yyval.node) = (yyvsp[(9) - (9)].node);;}
+ break;
+
+ case 282:
+
+/* Line 1455 of yacc.c */
+#line 971 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = NULL;;}
+ break;
+
+ case 283:
+
+/* Line 1455 of yacc.c */
+#line 973 "./js-parser/Grammar.y"
+ { PRINT_LINE; (yyval.node) = (yyvsp[(7) - (7)].node);;}
+ break;
+
+ case 284:
+
+/* Line 1455 of yacc.c */
+#line 975 "./js-parser/Grammar.y"
+ { PRINT_LINE; (yyval.node) = (yyvsp[(8) - (8)].node);;}
+ break;
+
+ case 285:
+
+/* Line 1455 of yacc.c */
+#line 977 "./js-parser/Grammar.y"
+ { PRINT_LINE; (yyval.node) = (yyvsp[(9) - (9)].node);;}
+ break;
+
+ case 286:
+
+/* Line 1455 of yacc.c */
+#line 981 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = NULL;;}
+ break;
+
+ case 288:
+
+/* Line 1455 of yacc.c */
+#line 986 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = NULL;;}
+ break;
+
+ case 290:
+
+/* Line 1455 of yacc.c */
+#line 991 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = NULL;;}
+ break;
+
+ case 291:
+
+/* Line 1455 of yacc.c */
+#line 992 "./js-parser/Grammar.y"
+ { PRINT_LINE; AUTO_SEMICOLON (0); ;}
+ break;
+
+ case 292:
+
+/* Line 1455 of yacc.c */
+#line 993 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = NULL;;}
+ break;
+
+ case 293:
+
+/* Line 1455 of yacc.c */
+#line 994 "./js-parser/Grammar.y"
+ { PRINT_LINE; AUTO_SEMICOLON (node_get_line ((yyvsp[(2) - (3)].node))); ;}
+ break;
+
+ case 294:
+
+/* Line 1455 of yacc.c */
+#line 998 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = NULL;;}
+ break;
+
+ case 295:
+
+/* Line 1455 of yacc.c */
+#line 999 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = NULL; AUTO_SEMICOLON (0);;}
+ break;
+
+ case 296:
+
+/* Line 1455 of yacc.c */
+#line 1000 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = NULL;;}
+ break;
+
+ case 297:
+
+/* Line 1455 of yacc.c */
+#line 1001 "./js-parser/Grammar.y"
+ { PRINT_LINE; AUTO_SEMICOLON (node_get_line ((yyvsp[(2) - (3)].node))); ;}
+ break;
+
+ case 298:
+
+/* Line 1455 of yacc.c */
+#line 1005 "./js-parser/Grammar.y"
+ { PRINT_LINE; (yyval.node) = node_new (TOK_RETURN, PN_UNARY); (yyval.node)->pn_u.unary.kid = NULL;;}
+ break;
+
+ case 299:
+
+/* Line 1455 of yacc.c */
+#line 1006 "./js-parser/Grammar.y"
+ { PRINT_LINE; (yyval.node) = node_new (TOK_RETURN, PN_UNARY); (yyval.node)->pn_u.unary.kid = NULL; AUTO_SEMICOLON (0); ;}
+ break;
+
+ case 300:
+
+/* Line 1455 of yacc.c */
+#line 1007 "./js-parser/Grammar.y"
+ { PRINT_LINE;
+ (yyval.node) = node_new (TOK_RETURN, PN_UNARY);
+ (yyval.node)->pn_u.unary.kid = (yyvsp[(2) - (3)].node);
+ node_correct_position ((yyval.node), (yyvsp[(2) - (3)].node));
+;}
+ break;
+
+ case 301:
+
+/* Line 1455 of yacc.c */
+#line 1012 "./js-parser/Grammar.y"
+ { PRINT_LINE;
+ (yyval.node) = node_new (TOK_RETURN, PN_UNARY);
+ (yyval.node)->pn_u.unary.kid = (yyvsp[(2) - (3)].node);
+ node_correct_position ((yyval.node), (yyvsp[(2) - (3)].node));
+ AUTO_SEMICOLON (node_get_line ((yyvsp[(2) - (3)].node)));
+;}
+ break;
+
+ case 302:
+
+/* Line 1455 of yacc.c */
+#line 1021 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = NULL;;}
+ break;
+
+ case 303:
+
+/* Line 1455 of yacc.c */
+#line 1025 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = NULL;;}
+ break;
+
+ case 304:
+
+/* Line 1455 of yacc.c */
+#line 1029 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = NULL;;}
+ break;
+
+ case 305:
+
+/* Line 1455 of yacc.c */
+#line 1031 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = NULL;;}
+ break;
+
+ case 306:
+
+/* Line 1455 of yacc.c */
+#line 1035 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = NULL;;}
+ break;
+
+ case 308:
+
+/* Line 1455 of yacc.c */
+#line 1040 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = NULL;;}
+ break;
+
+ case 309:
+
+/* Line 1455 of yacc.c */
+#line 1041 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = NULL;;}
+ break;
+
+ case 310:
+
+/* Line 1455 of yacc.c */
+#line 1045 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = NULL;;}
+ break;
+
+ case 311:
+
+/* Line 1455 of yacc.c */
+#line 1046 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = NULL;;}
+ break;
+
+ case 312:
+
+/* Line 1455 of yacc.c */
+#line 1050 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = NULL;;}
+ break;
+
+ case 313:
+
+/* Line 1455 of yacc.c */
+#line 1051 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = NULL;;}
+ break;
+
+ case 314:
+
+/* Line 1455 of yacc.c */
+#line 1055 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = NULL;;}
+ break;
+
+ case 315:
+
+/* Line 1455 of yacc.c */
+#line 1059 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = NULL;;}
+ break;
+
+ case 316:
+
+/* Line 1455 of yacc.c */
+#line 1060 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = NULL;;}
+ break;
+
+ case 317:
+
+/* Line 1455 of yacc.c */
+#line 1064 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = NULL;;}
+ break;
+
+ case 318:
+
+/* Line 1455 of yacc.c */
+#line 1065 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = NULL;;}
+ break;
+
+ case 319:
+
+/* Line 1455 of yacc.c */
+#line 1067 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = NULL;;}
+ break;
+
+ case 320:
+
+/* Line 1455 of yacc.c */
+#line 1071 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = NULL;;}
+ break;
+
+ case 321:
+
+/* Line 1455 of yacc.c */
+#line 1072 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = NULL;;}
+ break;
+
+ case 322:
+
+/* Line 1455 of yacc.c */
+#line 1076 "./js-parser/Grammar.y"
+ { PRINT_LINE;
+ (yyval.node) = node_new ( TOK_FUNCTION, PN_FUNC);
+ (yyval.node)->pn_u.func.name = (yyvsp[(2) - (7)].node);
+ (yyval.node)->pn_u.func.body = (yyvsp[(6) - (7)].node);
+ (yyval.node)->pn_u.func.args = NULL;
+ node_correct_position ((yyval.node), (yyvsp[(2) - (7)].node));
+ node_correct_position ((yyval.node), (yyvsp[(6) - (7)].node));
+ node_correct_position_end ((yyval.node), (yyvsp[(7) - (7)].intValue));
+;}
+ break;
+
+ case 323:
+
+/* Line 1455 of yacc.c */
+#line 1086 "./js-parser/Grammar.y"
+ { PRINT_LINE;
+ (yyval.node) = node_new ( TOK_FUNCTION, PN_FUNC);
+ (yyval.node)->pn_u.func.name = (yyvsp[(2) - (8)].node);
+ (yyval.node)->pn_u.func.body = (yyvsp[(7) - (8)].node);
+ (yyval.node)->pn_u.func.args = (yyvsp[(4) - (8)].node);
+ node_correct_position ((yyval.node), (yyvsp[(2) - (8)].node));
+ node_correct_position ((yyval.node), (yyvsp[(7) - (8)].node));
+ node_correct_position ((yyval.node), (yyvsp[(4) - (8)].node));
+ node_correct_position_end ((yyval.node), (yyvsp[(8) - (8)].intValue));
+;}
+ break;
+
+ case 324:
+
+/* Line 1455 of yacc.c */
+#line 1099 "./js-parser/Grammar.y"
+ { PRINT_LINE;
+ (yyval.node) = node_new ( TOK_FUNCTION, PN_FUNC);
+ (yyval.node)->pn_u.func.name = NULL;
+ (yyval.node)->pn_u.func.body = (yyvsp[(5) - (6)].node);
+ (yyval.node)->pn_u.func.args = NULL;
+ node_correct_position ((yyval.node), (yyvsp[(5) - (6)].node));
+ node_correct_position_end ((yyval.node), (yyvsp[(6) - (6)].intValue));
+;}
+ break;
+
+ case 325:
+
+/* Line 1455 of yacc.c */
+#line 1108 "./js-parser/Grammar.y"
+ { PRINT_LINE;
+ (yyval.node) = node_new ( TOK_FUNCTION, PN_FUNC);
+ (yyval.node)->pn_u.func.name = NULL;
+ (yyval.node)->pn_u.func.body = (yyvsp[(6) - (7)].node);
+ (yyval.node)->pn_u.func.args = (yyvsp[(3) - (7)].node);
+ node_correct_position ((yyval.node), (yyvsp[(3) - (7)].node));
+ node_correct_position ((yyval.node), (yyvsp[(6) - (7)].node));
+ node_correct_position_end ((yyval.node), (yyvsp[(7) - (7)].intValue));
+;}
+ break;
+
+ case 326:
+
+/* Line 1455 of yacc.c */
+#line 1117 "./js-parser/Grammar.y"
+ { PRINT_LINE;
+ (yyval.node) = node_new ( TOK_FUNCTION, PN_FUNC);
+ (yyval.node)->pn_u.func.name = (yyvsp[(2) - (7)].node);
+ (yyval.node)->pn_u.func.body = (yyvsp[(6) - (7)].node);
+ (yyval.node)->pn_u.func.args = NULL;
+ node_correct_position ((yyval.node), (yyvsp[(2) - (7)].node));
+ node_correct_position ((yyval.node), (yyvsp[(6) - (7)].node));
+ node_correct_position_end ((yyval.node), (yyvsp[(7) - (7)].intValue));
+;}
+ break;
+
+ case 327:
+
+/* Line 1455 of yacc.c */
+#line 1127 "./js-parser/Grammar.y"
+ { PRINT_LINE;
+ (yyval.node) = node_new ( TOK_FUNCTION, PN_FUNC);
+ (yyval.node)->pn_u.func.name = (yyvsp[(2) - (8)].node);
+ (yyval.node)->pn_u.func.body = (yyvsp[(7) - (8)].node);
+ (yyval.node)->pn_u.func.args = (yyvsp[(4) - (8)].node);
+ node_correct_position ((yyval.node), (yyvsp[(2) - (8)].node));
+ node_correct_position ((yyval.node), (yyvsp[(4) - (8)].node));
+ node_correct_position ((yyval.node), (yyvsp[(7) - (8)].node));
+ node_correct_position_end ((yyval.node), (yyvsp[(8) - (8)].intValue));
+;}
+ break;
+
+ case 328:
+
+/* Line 1455 of yacc.c */
+#line 1140 "./js-parser/Grammar.y"
+ { PRINT_LINE;
+ (yyval.node) = node_new (TOK_LC, PN_LIST);
+ (yyval.node)->pn_u.list.head = (yyvsp[(1) - (1)].node);
+ node_correct_position ((yyval.node), (yyvsp[(1) - (1)].node));
+;}
+ break;
+
+ case 329:
+
+/* Line 1455 of yacc.c */
+#line 1145 "./js-parser/Grammar.y"
+ { PRINT_LINE;
+ (yyval.node) = (yyvsp[(1) - (3)].node);
+ g_assert ((yyvsp[(1) - (3)].node)->pn_arity == PN_LIST);
+ if ((yyvsp[(1) - (3)].node)->pn_u.list.head) {
+ JSNode *i;
+ for (i = (yyvsp[(1) - (3)].node)->pn_u.list.head; i->pn_next != NULL; i = i->pn_next)
+ ;
+ i->pn_next = (yyvsp[(3) - (3)].node);
+ } else (yyvsp[(1) - (3)].node)->pn_u.list.head = (yyvsp[(3) - (3)].node);
+ node_correct_position ((yyval.node), (yyvsp[(3) - (3)].node));
+;}
+ break;
+
+ case 330:
+
+/* Line 1455 of yacc.c */
+#line 1159 "./js-parser/Grammar.y"
+ { PRINT_LINE_TODO; (yyval.node) = NULL;;}
+ break;
+
+ case 331:
+
+/* Line 1455 of yacc.c */
+#line 1160 "./js-parser/Grammar.y"
+ { PRINT_LINE; (yyval.node) = (yyvsp[(1) - (1)].node);;}
+ break;
+
+ case 332:
+
+/* Line 1455 of yacc.c */
+#line 1164 "./js-parser/Grammar.y"
+ { PRINT_LINE; global = NULL;;}
+ break;
+
+ case 333:
+
+/* Line 1455 of yacc.c */
+#line 1165 "./js-parser/Grammar.y"
+ { PRINT_LINE; global = (yyvsp[(1) - (1)].node);;}
+ break;
+
+ case 334:
+
+/* Line 1455 of yacc.c */
+#line 1169 "./js-parser/Grammar.y"
+ { PRINT_LINE;
+ (yyval.node) = node_new (TOK_LC, PN_LIST);
+ (yyval.node)->pn_u.list.head = (yyvsp[(1) - (1)].node);
+ node_correct_position ((yyval.node), (yyvsp[(1) - (1)].node));
+;}
+ break;
+
+ case 335:
+
+/* Line 1455 of yacc.c */
+#line 1174 "./js-parser/Grammar.y"
+ { PRINT_LINE;
+ (yyval.node) = (yyvsp[(1) - (2)].node);
+ g_assert ((yyvsp[(1) - (2)].node)->pn_arity == PN_LIST);
+ if ((yyvsp[(1) - (2)].node)->pn_u.list.head) {
+ JSNode *i;
+ for (i = (yyvsp[(1) - (2)].node)->pn_u.list.head; i->pn_next != NULL; i = i->pn_next) {
+ }
+ i->pn_next = (yyvsp[(2) - (2)].node);
+ } else (yyvsp[(1) - (2)].node)->pn_u.list.head = (yyvsp[(2) - (2)].node);
+ node_correct_position ((yyval.node), (yyvsp[(2) - (2)].node));
+;}
+ break;
+
+
+
+/* Line 1455 of yacc.c */
+#line 4421 "./js-parser/js-parser-y-tab.c"
+ default: break;
+ }
+ YY_SYMBOL_PRINT ("-> $$ =", yyr1[yyn], &yyval, &yyloc);
+
+ YYPOPSTACK (yylen);
+ yylen = 0;
+ YY_STACK_PRINT (yyss, yyssp);
+
+ *++yyvsp = yyval;
+
+ /* Now `shift' the result of the reduction. Determine what state
+ that goes to, based on the state we popped back to and the rule
+ number reduced by. */
+
+ yyn = yyr1[yyn];
+
+ yystate = yypgoto[yyn - YYNTOKENS] + *yyssp;
+ if (0 <= yystate && yystate <= YYLAST && yycheck[yystate] == *yyssp)
+ yystate = yytable[yystate];
+ else
+ yystate = yydefgoto[yyn - YYNTOKENS];
+
+ goto yynewstate;
+
+
+/*------------------------------------.
+| yyerrlab -- here on detecting error |
+`------------------------------------*/
+yyerrlab:
+ /* If not already recovering from an error, report this error. */
+ if (!yyerrstatus)
+ {
+ ++yynerrs;
+#if ! YYERROR_VERBOSE
+ yyerror (YY_("syntax error"));
+#else
+ {
+ YYSIZE_T yysize = yysyntax_error (0, yystate, yychar);
+ if (yymsg_alloc < yysize && yymsg_alloc < YYSTACK_ALLOC_MAXIMUM)
+ {
+ YYSIZE_T yyalloc = 2 * yysize;
+ if (! (yysize <= yyalloc && yyalloc <= YYSTACK_ALLOC_MAXIMUM))
+ yyalloc = YYSTACK_ALLOC_MAXIMUM;
+ if (yymsg != yymsgbuf)
+ YYSTACK_FREE (yymsg);
+ yymsg = (char *) YYSTACK_ALLOC (yyalloc);
+ if (yymsg)
+ yymsg_alloc = yyalloc;
+ else
+ {
+ yymsg = yymsgbuf;
+ yymsg_alloc = sizeof yymsgbuf;
+ }
+ }
+
+ if (0 < yysize && yysize <= yymsg_alloc)
+ {
+ (void) yysyntax_error (yymsg, yystate, yychar);
+ yyerror (yymsg);
+ }
+ else
+ {
+ yyerror (YY_("syntax error"));
+ if (yysize != 0)
+ goto yyexhaustedlab;
+ }
+ }
+#endif
+ }
+
+
+
+ if (yyerrstatus == 3)
+ {
+ /* If just tried and failed to reuse lookahead token after an
+ error, discard it. */
+
+ if (yychar <= YYEOF)
+ {
+ /* Return failure if at end of input. */
+ if (yychar == YYEOF)
+ YYABORT;
+ }
+ else
+ {
+ yydestruct ("Error: discarding",
+ yytoken, &yylval);
+ yychar = YYEMPTY;
+ }
+ }
+
+ /* Else will try to reuse lookahead token after shifting the error
+ token. */
+ goto yyerrlab1;
+
+
+/*---------------------------------------------------.
+| yyerrorlab -- error raised explicitly by YYERROR. |
+`---------------------------------------------------*/
+yyerrorlab:
+
+ /* Pacify compilers like GCC when the user code never invokes
+ YYERROR and the label yyerrorlab therefore never appears in user
+ code. */
+ if (/*CONSTCOND*/ 0)
+ goto yyerrorlab;
+
+ /* Do not reclaim the symbols of the rule which action triggered
+ this YYERROR. */
+ YYPOPSTACK (yylen);
+ yylen = 0;
+ YY_STACK_PRINT (yyss, yyssp);
+ yystate = *yyssp;
+ goto yyerrlab1;
+
+
+/*-------------------------------------------------------------.
+| yyerrlab1 -- common code for both syntax error and YYERROR. |
+`-------------------------------------------------------------*/
+yyerrlab1:
+ yyerrstatus = 3; /* Each real token shifted decrements this. */
+
+ for (;;)
+ {
+ yyn = yypact[yystate];
+ if (yyn != YYPACT_NINF)
+ {
+ yyn += YYTERROR;
+ if (0 <= yyn && yyn <= YYLAST && yycheck[yyn] == YYTERROR)
+ {
+ yyn = yytable[yyn];
+ if (0 < yyn)
+ break;
+ }
+ }
+
+ /* Pop the current state because it cannot handle the error token. */
+ if (yyssp == yyss)
+ YYABORT;
+
+
+ yydestruct ("Error: popping",
+ yystos[yystate], yyvsp);
+ YYPOPSTACK (1);
+ yystate = *yyssp;
+ YY_STACK_PRINT (yyss, yyssp);
+ }
+
+ *++yyvsp = yylval;
+
+
+ /* Shift the error token. */
+ YY_SYMBOL_PRINT ("Shifting", yystos[yyn], yyvsp, yylsp);
+
+ yystate = yyn;
+ goto yynewstate;
+
+
+/*-------------------------------------.
+| yyacceptlab -- YYACCEPT comes here. |
+`-------------------------------------*/
+yyacceptlab:
+ yyresult = 0;
+ goto yyreturn;
+
+/*-----------------------------------.
+| yyabortlab -- YYABORT comes here. |
+`-----------------------------------*/
+yyabortlab:
+ yyresult = 1;
+ goto yyreturn;
+
+#if !defined(yyoverflow) || YYERROR_VERBOSE
+/*-------------------------------------------------.
+| yyexhaustedlab -- memory exhaustion comes here. |
+`-------------------------------------------------*/
+yyexhaustedlab:
+ yyerror (YY_("memory exhausted"));
+ yyresult = 2;
+ /* Fall through. */
+#endif
+
+yyreturn:
+ if (yychar != YYEMPTY)
+ yydestruct ("Cleanup: discarding lookahead",
+ yytoken, &yylval);
+ /* Do not reclaim the symbols of the rule which action triggered
+ this YYABORT or YYACCEPT. */
+ YYPOPSTACK (yylen);
+ YY_STACK_PRINT (yyss, yyssp);
+ while (yyssp != yyss)
+ {
+ yydestruct ("Cleanup: popping",
+ yystos[*yyssp], yyvsp);
+ YYPOPSTACK (1);
+ }
+#ifndef yyoverflow
+ if (yyss != yyssa)
+ YYSTACK_FREE (yyss);
+#endif
+ yyps->yynew = 1;
+
+yypushreturn:
+#if YYERROR_VERBOSE
+ if (yymsg != yymsgbuf)
+ YYSTACK_FREE (yymsg);
+#endif
+ /* Make sure YYID is used. */
+ return YYID (yyresult);
+}
+
+
+
+/* Line 1675 of yacc.c */
+#line 1187 "./js-parser/Grammar.y"
+
+#undef GLOBAL_DATA
+
+void yyerror (char* msg)
+{
+// puts (msg);
+}
+
diff --git a/plugins/language-support-js/js-parser-y-tab.h b/plugins/language-support-js/js-parser-y-tab.h
deleted file mode 120000
index 5abe4ba..0000000
--- a/plugins/language-support-js/js-parser-y-tab.h
+++ /dev/null
@@ -1 +0,0 @@
-../symbol-db/anjuta-tags/js-parser/js-parser-y-tab.h
\ No newline at end of file
diff --git a/plugins/language-support-js/js-parser-y-tab.h b/plugins/language-support-js/js-parser-y-tab.h
new file mode 100644
index 0000000..2bb60e4
--- /dev/null
+++ b/plugins/language-support-js/js-parser-y-tab.h
@@ -0,0 +1,168 @@
+
+/* A Bison parser, made by GNU Bison 2.4.1. */
+
+/* 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.
+
+ 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 3 of the License, 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, see <http://www.gnu.org/licenses/>. */
+
+/* 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. */
+
+
+/* Tokens. */
+#ifndef YYTOKENTYPE
+# define YYTOKENTYPE
+ /* Put the tokens into the symbol table, so that GDB and other debuggers
+ know about them. */
+ enum yytokentype {
+ NULLTOKEN = 258,
+ TRUETOKEN = 259,
+ FALSETOKEN = 260,
+ BREAK = 261,
+ CASE = 262,
+ DEFAULT = 263,
+ FOR = 264,
+ NEW = 265,
+ VAR = 266,
+ CONSTTOKEN = 267,
+ CONTINUE = 268,
+ FUNCTION = 269,
+ RETURN = 270,
+ VOIDTOKEN = 271,
+ DELETETOKEN = 272,
+ IF = 273,
+ THISTOKEN = 274,
+ DO = 275,
+ WHILE = 276,
+ INTOKEN = 277,
+ INSTANCEOF = 278,
+ TYPEOF = 279,
+ SWITCH = 280,
+ WITH = 281,
+ RESERVED = 282,
+ THROW = 283,
+ TRY = 284,
+ CATCH = 285,
+ FINALLY = 286,
+ DEBUGGER = 287,
+ IF_WITHOUT_ELSE = 288,
+ ELSE = 289,
+ EQEQ = 290,
+ NE = 291,
+ STREQ = 292,
+ STRNEQ = 293,
+ LE = 294,
+ GE = 295,
+ OR = 296,
+ AND = 297,
+ PLUSPLUS = 298,
+ MINUSMINUS = 299,
+ LSHIFT = 300,
+ RSHIFT = 301,
+ URSHIFT = 302,
+ PLUSEQUAL = 303,
+ MINUSEQUAL = 304,
+ MULTEQUAL = 305,
+ DIVEQUAL = 306,
+ LSHIFTEQUAL = 307,
+ RSHIFTEQUAL = 308,
+ URSHIFTEQUAL = 309,
+ ANDEQUAL = 310,
+ MODEQUAL = 311,
+ XOREQUAL = 312,
+ OREQUAL = 313,
+ OPENBRACE = 314,
+ CLOSEBRACE = 315,
+ IDENT_IN = 316,
+ NUMBER = 317,
+ STRING = 318,
+ AUTOPLUSPLUS = 319,
+ AUTOMINUSMINUS = 320
+ };
+#endif
+
+
+
+#if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
+typedef union YYSTYPE
+{
+
+/* Line 1676 of yacc.c */
+#line 109 "./js-parser/Grammar.y"
+
+ int intValue;
+ JSNode* node;
+ struct {
+ char *iname;
+ JSTokenPos pos;
+ } name;
+
+
+
+/* Line 1676 of yacc.c */
+#line 128 "./js-parser/js-parser-y-tab.h"
+} YYSTYPE;
+# define YYSTYPE_IS_TRIVIAL 1
+# define yystype YYSTYPE /* obsolescent; will be withdrawn */
+# define YYSTYPE_IS_DECLARED 1
+#endif
+
+
+
+
+#ifndef YYPUSH_DECLS
+# define YYPUSH_DECLS
+struct yypstate;
+typedef struct yypstate yypstate;
+enum { YYPUSH_MORE = 4 };
+#if defined __STDC__ || defined __cplusplus
+int yyparse (void);
+#else
+int yyparse ();
+#endif
+#if defined __STDC__ || defined __cplusplus
+int yypush_parse (yypstate *yyps, int yypushed_char, YYSTYPE const *yypushed_val);
+#else
+int yypush_parse ();
+#endif
+#if defined __STDC__ || defined __cplusplus
+int yypull_parse (yypstate *yyps);
+#else
+int yypull_parse ();
+#endif
+#if defined __STDC__ || defined __cplusplus
+yypstate * yypstate_new (void);
+#else
+yypstate * yypstate_new ();
+#endif
+#if defined __STDC__ || defined __cplusplus
+void yypstate_delete (yypstate *yyps);
+#else
+void yypstate_delete ();
+#endif
+#endif
+
diff --git a/plugins/language-support-js/jsparse.c b/plugins/language-support-js/jsparse.c
deleted file mode 120000
index 0c84dde..0000000
--- a/plugins/language-support-js/jsparse.c
+++ /dev/null
@@ -1 +0,0 @@
-../symbol-db/anjuta-tags/js-parser/jsparse.c
\ No newline at end of file
diff --git a/plugins/language-support-js/jsparse.c b/plugins/language-support-js/jsparse.c
new file mode 100644
index 0000000..c906599
--- /dev/null
+++ b/plugins/language-support-js/jsparse.c
@@ -0,0 +1,146 @@
+
+#include <stdio.h>
+#include "jstypes.h"
+#include "jsparse.h"
+#include "js-node.h"
+
+void
+print_node (JSNode *node, char *pref)
+{
+ char *pr = g_strconcat(pref, "\t", NULL);
+ JSNode *iter;
+
+ if (node == NULL)
+ return;
+
+ printf ("%s%d\n",pref,node->pn_type);
+ switch (node->pn_arity)
+ {
+ case PN_UNARY:
+ printf ("%sUNARY\n", pref);
+ switch ((JSTokenType)node->pn_type)
+ {
+ case TOK_SEMI:
+ print_node (node->pn_u.unary.kid, pr);
+ break;
+ default:
+ break;
+ }
+ break;
+ case PN_LIST:
+ printf ("%sLIST\n", pref);
+ switch ((JSTokenType)node->pn_type)
+ {
+ case TOK_VAR:
+ for (iter = node->pn_u.list.head; iter != NULL; iter = iter->pn_next)
+ {
+ g_assert (iter->pn_type == TOK_NAME);
+
+ break;
+ }
+ case TOK_LP:
+ print_node (node->pn_u.list.head, pr);
+ int k = 0;
+ for (iter = ((JSNode*)node->pn_u.list.head)->pn_next; iter != NULL; iter = iter->pn_next, k++)
+ {
+ print_node (iter, pr);
+ }
+ break;
+ case TOK_RC:
+ {
+ print_node (node->pn_u.list.head, pr);
+ int k = 0;
+ for (iter = ((JSNode*)node->pn_u.list.head)->pn_next; iter != NULL; iter = iter->pn_next, k++)
+ {
+ print_node (iter, pr);
+ }
+ }
+ break;
+ case TOK_LC:
+ for (iter = node->pn_u.list.head; iter != NULL; iter = iter->pn_next)
+ {
+ print_node (iter, pr);
+ }
+ break;
+ case TOK_NEW:
+ ///NOT COMPLETE
+ print_node (node->pn_u.list.head, pr);
+ for (iter = ((JSNode*)node->pn_u.list.head)->pn_next; iter != NULL; iter = iter->pn_next)
+ {
+ print_node (iter, pr);
+ }
+ break;
+ default:
+ break;
+ }
+ break;
+ case PN_BINARY:
+ printf ("%sBINARY\n", pref);
+ switch ((JSTokenType)node->pn_type)
+ {
+ case TOK_ASSIGN:
+ ///NOT COMPLETE
+ print_node (node->pn_u.binary.left, pr);
+ print_node (node->pn_u.binary.right, pr);
+
+ break;
+ default:
+ break;
+ }
+ break;
+ case PN_FUNC:
+ printf ("%sFUNC\n", pref);
+ print_node (node->pn_u.func.body, pr);
+ break;
+ case PN_NAME:
+//TODO printf ("%sNAME\n%s\n", pref, node->pn_u.name.name);
+ printf ("%sNAME\n", pref);
+ print_node (node->pn_u.name.expr, pr);
+/* JSAtom * atom = node->pn_atom;
+ *code = js_AtomToPrintableString(context, node->pn_atom); */
+ break;
+ case PN_NULLARY:
+ printf ("%sNULL\n", pref);
+ switch ((JSTokenType)node->pn_type)
+ {
+ case TOK_STRING:
+// *code = g_strconcat ("\"", js_AtomToPrintableString(context, node->pn_atom), "\"", NULL);
+ break;
+ case TOK_NUMBER:
+// *code = g_new (char, 100);
+// sprintf (*code, "%lf", node->pn_u.dval);
+ break;
+ default:
+ break;
+ }
+ break;
+ case PN_TERNARY:
+ printf ("%sTERNARY\n", pref);
+/* print (node->pn_u.ternary.kid1, pr, &in);
+ print (node->pn_u.ternary.kid2, pr, &in);
+ print (node->pn_u.ternary.kid3, pr, &in); */
+ break;
+
+ }
+ g_free (pr);
+ return;
+}
+/*
+void
+print_context (Context *my_cx, const gchar *str)
+{
+ GList *i;
+ printf ("%s%d-%d\n", str, my_cx->bline, my_cx->eline);
+ for (i = my_cx->local_var; i; i = g_list_next (i))
+ {
+ Var *t = (Var *)i->data;
+ if (!t->name)
+ continue;
+ printf ("%s%s\n", str, t->name);
+ }
+ for (i = g_list_last (my_cx->childs); i; i = g_list_previous (i))
+ {
+ Context *t = (Context *)i->data;
+ print_context (t, g_strdup_printf ("%s%s","\t", str));
+ }
+}*/
diff --git a/plugins/language-support-js/jsparse.h b/plugins/language-support-js/jsparse.h
deleted file mode 120000
index 1700b7e..0000000
--- a/plugins/language-support-js/jsparse.h
+++ /dev/null
@@ -1 +0,0 @@
-../symbol-db/anjuta-tags/js-parser/jsparse.h
\ No newline at end of file
diff --git a/plugins/language-support-js/jsparse.h b/plugins/language-support-js/jsparse.h
new file mode 100644
index 0000000..e98703c
--- /dev/null
+++ b/plugins/language-support-js/jsparse.h
@@ -0,0 +1,13 @@
+#ifndef JSPARSE_H
+#define JSPARSE_H
+
+#include <glib.h>
+#include "jstypes.h"
+#include "js-node.h"
+#include "js-context.h"
+
+void print_node (JSNode *node, char *pref);
+
+//void print_context (Context *my_cx, const gchar *str);
+
+#endif
diff --git a/plugins/language-support-js/jstypes.h b/plugins/language-support-js/jstypes.h
deleted file mode 120000
index 999df72..0000000
--- a/plugins/language-support-js/jstypes.h
+++ /dev/null
@@ -1 +0,0 @@
-../symbol-db/anjuta-tags/js-parser/jstypes.h
\ No newline at end of file
diff --git a/plugins/language-support-js/jstypes.h b/plugins/language-support-js/jstypes.h
new file mode 100644
index 0000000..0d7a150
--- /dev/null
+++ b/plugins/language-support-js/jstypes.h
@@ -0,0 +1,114 @@
+#ifndef JSTYPES_H
+#define JSTYPES_H
+
+#include <glib.h>
+
+typedef enum JSNodeArity {
+ PN_FUNC = -3,
+ PN_LIST = -2,
+ PN_TERNARY = 3,
+ PN_BINARY = 2,
+ PN_UNARY = 1,
+ PN_NAME = -1,
+ PN_NULLARY = 0
+} JSNodeArity;
+
+enum {
+ JSOP_FALSE,
+ JSOP_TRUE,
+ JSOP_NULL,
+ JSOP_THIS,
+};
+
+typedef struct {
+ long begin; /* first character and line of token */
+ long end; /* index 1 past last char, last line */
+} JSTokenPos;
+
+typedef enum JSTokenType {
+ TOK_ERROR = -1, /* well-known as the only code < EOF */
+ TOK_EOF = 0, /* end of file */
+ TOK_EOL = 1, /* end of line */
+ TOK_SEMI = 2, /* semicolon */
+ TOK_COMMA = 3, /* comma operator */
+ TOK_ASSIGN = 4, /* assignment ops (= += -= etc.) */
+ TOK_HOOK = 5, TOK_COLON = 6, /* conditional (?:) */
+ TOK_OR = 7, /* logical or (||) */
+ TOK_AND = 8, /* logical and (&&) */
+ TOK_BITOR = 9, /* bitwise-or (|) */
+ TOK_BITXOR = 10, /* bitwise-xor (^) */
+ TOK_BITAND = 11, /* bitwise-and (&) */
+ TOK_EQOP = 12, /* equality ops (== !=) */
+ TOK_RELOP = 13, /* relational ops (< <= > >=) */
+ TOK_SHOP = 14, /* shift ops (<< >> >>>) */
+ TOK_PLUS = 15, /* plus */
+ TOK_MINUS = 16, /* minus */
+ TOK_STAR = 17, TOK_DIVOP = 18, /* multiply/divide ops (* / %) */
+ TOK_UNARYOP = 19, /* unary prefix operator */
+ TOK_INC = 20, TOK_DEC = 21, /* increment/decrement (++ --) */
+ TOK_DOT = 22, /* member operator (.) */
+ TOK_LB = 23, TOK_RB = 24, /* left and right brackets */
+ TOK_LC = 25, TOK_RC = 26, /* left and right curlies (braces) */
+ TOK_LP = 27, TOK_RP = 28, /* left and right parentheses */
+ TOK_NAME = 29, /* identifier */
+ TOK_NUMBER = 30, /* numeric constant */
+ TOK_STRING = 31, /* string constant */
+ TOK_OBJECT = 32, /* RegExp or other object constant */
+ TOK_PRIMARY = 33, /* true, false, null, this, super */
+ TOK_FUNCTION = 34, /* function keyword */
+ TOK_EXPORT = 35, /* export keyword */
+ TOK_IMPORT = 36, /* import keyword */
+ TOK_IF = 37, /* if keyword */
+ TOK_ELSE = 38, /* else keyword */
+ TOK_SWITCH = 39, /* switch keyword */
+ TOK_CASE = 40, /* case keyword */
+ TOK_DEFAULT = 41, /* default keyword */
+ TOK_WHILE = 42, /* while keyword */
+ TOK_DO = 43, /* do keyword */
+ TOK_FOR = 44, /* for keyword */
+ TOK_BREAK = 45, /* break keyword */
+ TOK_CONTINUE = 46, /* continue keyword */
+ TOK_IN = 47, /* in keyword */
+ TOK_VAR = 48, /* var keyword */
+ TOK_WITH = 49, /* with keyword */
+ TOK_RETURN = 50, /* return keyword */
+ TOK_NEW = 51, /* new keyword */
+ TOK_DELETE = 52, /* delete keyword */
+ TOK_DEFSHARP = 53, /* #n= for object/array initializers */
+ TOK_USESHARP = 54, /* #n# for object/array initializers */
+ TOK_TRY = 55, /* try keyword */
+ TOK_CATCH = 56, /* catch keyword */
+ TOK_FINALLY = 57, /* finally keyword */
+ TOK_THROW = 58, /* throw keyword */
+ TOK_INSTANCEOF = 59, /* instanceof keyword */
+ TOK_DEBUGGER = 60, /* debugger keyword */
+ TOK_XMLSTAGO = 61, /* XML start tag open (<) */
+ TOK_XMLETAGO = 62, /* XML end tag open (</) */
+ TOK_XMLPTAGC = 63, /* XML point tag close (/>) */
+ TOK_XMLTAGC = 64, /* XML start or end tag close (>) */
+ TOK_XMLNAME = 65, /* XML start-tag non-final fragment */
+ TOK_XMLATTR = 66, /* XML quoted attribute value */
+ TOK_XMLSPACE = 67, /* XML whitespace */
+ TOK_XMLTEXT = 68, /* XML text */
+ TOK_XMLCOMMENT = 69, /* XML comment */
+ TOK_XMLCDATA = 70, /* XML CDATA section */
+ TOK_XMLPI = 71, /* XML processing instruction */
+ TOK_AT = 72, /* XML attribute op (@) */
+ TOK_DBLCOLON = 73, /* namespace qualified name op (::) */
+ TOK_ANYNAME = 74, /* XML AnyName singleton (*) */
+ TOK_DBLDOT = 75, /* XML descendant op (..) */
+ TOK_FILTER = 76, /* XML filtering predicate op (.()) */
+ TOK_XMLELEM = 77, /* XML element node type (no token) */
+ TOK_XMLLIST = 78, /* XML list node type (no token) */
+ TOK_YIELD = 79, /* yield from generator function */
+ TOK_ARRAYCOMP = 80, /* array comprehension initialiser */
+ TOK_ARRAYPUSH = 81, /* array push within comprehension */
+ TOK_LEXICALSCOPE = 82, /* block scope AST node label */
+ TOK_LET = 83, /* let keyword */
+ TOK_BODY = 84, /* synthetic body of function with
+ destructuring formal parameters */
+ TOK_RESERVED, /* reserved keywords */
+ TOK_LIMIT /* domain size */
+} JSTokenType;
+
+#endif
diff --git a/plugins/language-support-js/lex.l b/plugins/language-support-js/lex.l
deleted file mode 120000
index 018ca01..0000000
--- a/plugins/language-support-js/lex.l
+++ /dev/null
@@ -1 +0,0 @@
-../symbol-db/anjuta-tags/js-parser/lex.l
\ No newline at end of file
diff --git a/plugins/language-support-js/lex.l b/plugins/language-support-js/lex.l
new file mode 100644
index 0000000..09e151a
--- /dev/null
+++ b/plugins/language-support-js/lex.l
@@ -0,0 +1,126 @@
+%{
+#include <stdio.h>
+#include "jstypes.h"
+#include "js-node.h"
+#include "js-parser-y-tab.h"
+%}
+
+%option nounput
+%option noinput
+%option yylineno
+COMMENT_BEGIN "/*"
+COMMENT_END "*/"
+%START COMMENT
+%%
+{COMMENT_BEGIN} {BEGIN COMMENT;};
+<COMMENT>[^*]* ;
+<COMMENT>[^/] ;
+<COMMENT>{COMMENT_END} {BEGIN 0; };
+null return NULLTOKEN;
+true return TRUETOKEN;
+false return FALSETOKEN;
+
+break return BREAK;
+case return CASE;
+catch return CATCH;
+const return CONSTTOKEN;
+default return DEFAULT;
+finally return FINALLY;
+for return FOR;
+instanceof return INSTANCEOF;
+new return NEW;
+var return VAR;
+continue return CONTINUE;
+function return FUNCTION;
+return return RETURN;
+void return VOIDTOKEN;
+delete return DELETETOKEN;
+if return IF;
+this return THISTOKEN;
+do return DO;
+while return WHILE;
+else return ELSE;
+in return INTOKEN;
+switch return SWITCH;
+throw return THROW;
+try return TRY;
+typeof return TYPEOF;
+with return WITH;
+debugger return DEBUGGER;
+"===" return STREQ;
+"!==" return STRNEQ;
+"let" ;
+"++" return PLUSPLUS;
+"--" return MINUSMINUS;
+"+=" return PLUSEQUAL;
+"-=" return MINUSEQUAL;
+"*=" return MULTEQUAL;
+"/=" return DIVEQUAL;
+"{" return OPENBRACE;
+"}" (*yylval).intValue = yylineno; return CLOSEBRACE;
+"==" return EQEQ;
+"!=" return NE;
+"<=" return LE;
+">=" return GE;
+"||" return OR;
+"&&" return AND;
+"&=" return ANDEQUAL;
+"%=" return MODEQUAL;
+"^=" return XOREQUAL;
+"|=" return OREQUAL;
+"0x"[A-Fa-f0-9]+ return NUMBER;
+[0-9]+"."[0-9]* return NUMBER;
+[0-9]*"."[0-9]+ return NUMBER;
+[0-9]+ return NUMBER;
+[a-zA-Z_][a-zA-Z0-9_]* (*yylval).name.iname=strdup (yytext); (*yylval).name.pos.end = yylineno; (*yylval).name.pos.begin = yylineno; return IDENT_IN;
+"\""([^\"]*"\\\""?[^\"]*)*"\"" return STRING;
+"\'"([^\']*"\\\'"?[^\']*)*"\'" return STRING;
+"<<" return LSHIFT;
+">>" return RSHIFT;
+">>>" return URSHIFT;
+">>=" return RSHIFTEQUAL;
+">>>=" return URSHIFTEQUAL;
+"(" return '(';
+")" return ')';
+"/" return '/';
+"\\" return '\\';
+":" return ':';
+"," return ',';
+"[" return '[';
+"]" return ']';
+"." return '.';
+"+" return '+';
+"-" return '-';
+"~" return '~';
+"!" return '!';
+"*" return '*';
+"%" return '%';
+"<" return '<';
+">" return '>';
+"&" return '&';
+"^" return '^';
+"|" return '|';
+"?" return '?';
+";" return ';';
+"=" return '=';
+"$" return '$';
+
+"//".*"\n" ;
+" " ;
+"\t" ;
+"\n" ;
+%%
+//"<<=" return LSHIFTEQUA;
+// RESERVED = 282,
+// IF_WITHOUT_ELSE = 288,
+// IDENT = 317,
+
+// AUTOPLUSPLUS = 319,
+// AUTOMINUSMINUS = 320
+
+
+int yywrap ()
+{
+ return 1;
+}
+
diff --git a/plugins/language-support-js/lex.yy.c b/plugins/language-support-js/lex.yy.c
deleted file mode 120000
index 20ac48e..0000000
--- a/plugins/language-support-js/lex.yy.c
+++ /dev/null
@@ -1 +0,0 @@
-../symbol-db/anjuta-tags/js-parser/lex.yy.c
\ No newline at end of file
diff --git a/plugins/language-support-js/lex.yy.c b/plugins/language-support-js/lex.yy.c
new file mode 100644
index 0000000..0cf1b78
--- /dev/null
+++ b/plugins/language-support-js/lex.yy.c
@@ -0,0 +1,3698 @@
+#line 2 "js-parser/lex.yy.c"
+
+#line 4 "js-parser/lex.yy.c"
+
+#define YY_INT_ALIGNED short int
+
+/* A lexical scanner generated by flex */
+
+#define FLEX_SCANNER
+#define YY_FLEX_MAJOR_VERSION 2
+#define YY_FLEX_MINOR_VERSION 5
+#define YY_FLEX_SUBMINOR_VERSION 35
+#if YY_FLEX_SUBMINOR_VERSION > 0
+#define FLEX_BETA
+#endif
+
+/* First, we deal with platform-specific or compiler-specific issues. */
+
+/* begin standard C headers. */
+#include <stdio.h>
+#include <string.h>
+#include <errno.h>
+#include <stdlib.h>
+
+/* end standard C headers. */
+
+/* flex integer type definitions */
+
+#ifndef FLEXINT_H
+#define FLEXINT_H
+
+/* C99 systems have <inttypes.h>. Non-C99 systems may or may not. */
+
+#if defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L
+
+/* C99 says to define __STDC_LIMIT_MACROS before including stdint.h,
+ * if you want the limit (max/min) macros for int types.
+ */
+#ifndef __STDC_LIMIT_MACROS
+#define __STDC_LIMIT_MACROS 1
+#endif
+
+#include <inttypes.h>
+typedef int8_t flex_int8_t;
+typedef uint8_t flex_uint8_t;
+typedef int16_t flex_int16_t;
+typedef uint16_t flex_uint16_t;
+typedef int32_t flex_int32_t;
+typedef uint32_t flex_uint32_t;
+#else
+typedef signed char flex_int8_t;
+typedef short int flex_int16_t;
+typedef int flex_int32_t;
+typedef unsigned char flex_uint8_t;
+typedef unsigned short int flex_uint16_t;
+typedef unsigned int flex_uint32_t;
+
+/* Limits of integral types. */
+#ifndef INT8_MIN
+#define INT8_MIN (-128)
+#endif
+#ifndef INT16_MIN
+#define INT16_MIN (-32767-1)
+#endif
+#ifndef INT32_MIN
+#define INT32_MIN (-2147483647-1)
+#endif
+#ifndef INT8_MAX
+#define INT8_MAX (127)
+#endif
+#ifndef INT16_MAX
+#define INT16_MAX (32767)
+#endif
+#ifndef INT32_MAX
+#define INT32_MAX (2147483647)
+#endif
+#ifndef UINT8_MAX
+#define UINT8_MAX (255U)
+#endif
+#ifndef UINT16_MAX
+#define UINT16_MAX (65535U)
+#endif
+#ifndef UINT32_MAX
+#define UINT32_MAX (4294967295U)
+#endif
+
+#endif /* ! C99 */
+
+#endif /* ! FLEXINT_H */
+
+#ifdef __cplusplus
+
+/* The "const" storage-class-modifier is valid. */
+#define YY_USE_CONST
+
+#else /* ! __cplusplus */
+
+/* C99 requires __STDC__ to be defined as 1. */
+#if defined (__STDC__)
+
+#define YY_USE_CONST
+
+#endif /* defined (__STDC__) */
+#endif /* ! __cplusplus */
+
+#ifdef YY_USE_CONST
+#define yyconst const
+#else
+#define yyconst
+#endif
+
+/* Returned upon end-of-file. */
+#define YY_NULL 0
+
+/* Promotes a possibly negative, possibly signed char to an unsigned
+ * integer for use as an array index. If the signed char is negative,
+ * we want to instead treat it as an 8-bit unsigned char, hence the
+ * double cast.
+ */
+#define YY_SC_TO_UI(c) ((unsigned int) (unsigned char) c)
+
+/* Enter a start condition. This macro really ought to take a parameter,
+ * but we do it the disgusting crufty way forced on us by the ()-less
+ * definition of BEGIN.
+ */
+#define BEGIN (yy_start) = 1 + 2 *
+
+/* Translate the current start state into a value that can be later handed
+ * to BEGIN to return to the state. The YYSTATE alias is for lex
+ * compatibility.
+ */
+#define YY_START (((yy_start) - 1) / 2)
+#define YYSTATE YY_START
+
+/* Action number for EOF rule of a given start state. */
+#define YY_STATE_EOF(state) (YY_END_OF_BUFFER + state + 1)
+
+/* Special action meaning "start processing a new file". */
+#define YY_NEW_FILE yyrestart(yyin )
+
+#define YY_END_OF_BUFFER_CHAR 0
+
+/* Size of default input buffer. */
+#ifndef YY_BUF_SIZE
+#ifdef __ia64__
+/* On IA-64, the buffer size is 16k, not 8k.
+ * Moreover, YY_BUF_SIZE is 2*YY_READ_BUF_SIZE in the general case.
+ * Ditto for the __ia64__ case accordingly.
+ */
+#define YY_BUF_SIZE 32768
+#else
+#define YY_BUF_SIZE 16384
+#endif /* __ia64__ */
+#endif
+
+/* The state buf must be large enough to hold one state per character in the main buffer.
+ */
+#define YY_STATE_BUF_SIZE ((YY_BUF_SIZE + 2) * sizeof(yy_state_type))
+
+#ifndef YY_TYPEDEF_YY_BUFFER_STATE
+#define YY_TYPEDEF_YY_BUFFER_STATE
+typedef struct yy_buffer_state *YY_BUFFER_STATE;
+#endif
+
+extern int yyleng;
+
+extern FILE *yyin, *yyout;
+
+#define EOB_ACT_CONTINUE_SCAN 0
+#define EOB_ACT_END_OF_FILE 1
+#define EOB_ACT_LAST_MATCH 2
+
+ /* Note: We specifically omit the test for yy_rule_can_match_eol because it requires
+ * access to the local variable yy_act. Since yyless() is a macro, it would break
+ * existing scanners that call yyless() from OUTSIDE yylex.
+ * One obvious solution it to make yy_act a global. I tried that, and saw
+ * a 5% performance hit in a non-yylineno scanner, because yy_act is
+ * normally declared as a register variable-- so it is not worth it.
+ */
+ #define YY_LESS_LINENO(n) \
+ do { \
+ int yyl;\
+ for ( yyl = n; yyl < yyleng; ++yyl )\
+ if ( yytext[yyl] == '\n' )\
+ --yylineno;\
+ }while(0)
+
+/* Return all but the first "n" matched characters back to the input stream. */
+#define yyless(n) \
+ do \
+ { \
+ /* Undo effects of setting up yytext. */ \
+ int yyless_macro_arg = (n); \
+ YY_LESS_LINENO(yyless_macro_arg);\
+ *yy_cp = (yy_hold_char); \
+ YY_RESTORE_YY_MORE_OFFSET \
+ (yy_c_buf_p) = yy_cp = yy_bp + yyless_macro_arg - YY_MORE_ADJ; \
+ YY_DO_BEFORE_ACTION; /* set up yytext again */ \
+ } \
+ while ( 0 )
+
+#define unput(c) yyunput( c, (yytext_ptr) )
+
+#ifndef YY_TYPEDEF_YY_SIZE_T
+#define YY_TYPEDEF_YY_SIZE_T
+typedef size_t yy_size_t;
+#endif
+
+#ifndef YY_STRUCT_YY_BUFFER_STATE
+#define YY_STRUCT_YY_BUFFER_STATE
+struct yy_buffer_state
+ {
+ FILE *yy_input_file;
+
+ char *yy_ch_buf; /* input buffer */
+ char *yy_buf_pos; /* current position in input buffer */
+
+ /* Size of input buffer in bytes, not including room for EOB
+ * characters.
+ */
+ yy_size_t yy_buf_size;
+
+ /* Number of characters read into yy_ch_buf, not including EOB
+ * characters.
+ */
+ int yy_n_chars;
+
+ /* Whether we "own" the buffer - i.e., we know we created it,
+ * and can realloc() it to grow it, and should free() it to
+ * delete it.
+ */
+ int yy_is_our_buffer;
+
+ /* Whether this is an "interactive" input source; if so, and
+ * if we're using stdio for input, then we want to use getc()
+ * instead of fread(), to make sure we stop fetching input after
+ * each newline.
+ */
+ int yy_is_interactive;
+
+ /* Whether we're considered to be at the beginning of a line.
+ * If so, '^' rules will be active on the next match, otherwise
+ * not.
+ */
+ int yy_at_bol;
+
+ int yy_bs_lineno; /**< The line count. */
+ int yy_bs_column; /**< The column count. */
+
+ /* Whether to try to fill the input buffer when we reach the
+ * end of it.
+ */
+ int yy_fill_buffer;
+
+ int yy_buffer_status;
+
+#define YY_BUFFER_NEW 0
+#define YY_BUFFER_NORMAL 1
+ /* When an EOF's been seen but there's still some text to process
+ * then we mark the buffer as YY_EOF_PENDING, to indicate that we
+ * shouldn't try reading from the input source any more. We might
+ * still have a bunch of tokens to match, though, because of
+ * possible backing-up.
+ *
+ * When we actually see the EOF, we change the status to "new"
+ * (via yyrestart()), so that the user can continue scanning by
+ * just pointing yyin at a new input file.
+ */
+#define YY_BUFFER_EOF_PENDING 2
+
+ };
+#endif /* !YY_STRUCT_YY_BUFFER_STATE */
+
+/* Stack of input buffers. */
+static size_t yy_buffer_stack_top = 0; /**< index of top of stack. */
+static size_t yy_buffer_stack_max = 0; /**< capacity of stack. */
+static YY_BUFFER_STATE * yy_buffer_stack = 0; /**< Stack as an array. */
+
+/* We provide macros for accessing buffer states in case in the
+ * future we want to put the buffer states in a more general
+ * "scanner state".
+ *
+ * Returns the top of the stack, or NULL.
+ */
+#define YY_CURRENT_BUFFER ( (yy_buffer_stack) \
+ ? (yy_buffer_stack)[(yy_buffer_stack_top)] \
+ : NULL)
+
+/* Same as previous macro, but useful when we know that the buffer stack is not
+ * NULL or when we need an lvalue. For internal use only.
+ */
+#define YY_CURRENT_BUFFER_LVALUE (yy_buffer_stack)[(yy_buffer_stack_top)]
+
+/* yy_hold_char holds the character lost when yytext is formed. */
+static char yy_hold_char;
+static int yy_n_chars; /* number of characters read into yy_ch_buf */
+int yyleng;
+
+/* Points to current character in buffer. */
+static char *yy_c_buf_p = (char *) 0;
+static int yy_init = 0; /* whether we need to initialize */
+static int yy_start = 0; /* start state number */
+
+/* Flag which is used to allow yywrap()'s to do buffer switches
+ * instead of setting up a fresh yyin. A bit of a hack ...
+ */
+static int yy_did_buffer_switch_on_eof;
+
+void yyrestart (FILE *input_file );
+void yy_switch_to_buffer (YY_BUFFER_STATE new_buffer );
+YY_BUFFER_STATE yy_create_buffer (FILE *file,int size );
+void yy_delete_buffer (YY_BUFFER_STATE b );
+void yy_flush_buffer (YY_BUFFER_STATE b );
+void yypush_buffer_state (YY_BUFFER_STATE new_buffer );
+void yypop_buffer_state (void );
+
+static void yyensure_buffer_stack (void );
+static void yy_load_buffer_state (void );
+static void yy_init_buffer (YY_BUFFER_STATE b,FILE *file );
+
+#define YY_FLUSH_BUFFER yy_flush_buffer(YY_CURRENT_BUFFER )
+
+YY_BUFFER_STATE yy_scan_buffer (char *base,yy_size_t size );
+YY_BUFFER_STATE yy_scan_string (yyconst char *yy_str );
+YY_BUFFER_STATE yy_scan_bytes (yyconst char *bytes,int len );
+
+void *yyalloc (yy_size_t );
+void *yyrealloc (void *,yy_size_t );
+void yyfree (void * );
+
+#define yy_new_buffer yy_create_buffer
+
+#define yy_set_interactive(is_interactive) \
+ { \
+ if ( ! YY_CURRENT_BUFFER ){ \
+ yyensure_buffer_stack (); \
+ YY_CURRENT_BUFFER_LVALUE = \
+ yy_create_buffer(yyin,YY_BUF_SIZE ); \
+ } \
+ YY_CURRENT_BUFFER_LVALUE->yy_is_interactive = is_interactive; \
+ }
+
+#define yy_set_bol(at_bol) \
+ { \
+ if ( ! YY_CURRENT_BUFFER ){\
+ yyensure_buffer_stack (); \
+ YY_CURRENT_BUFFER_LVALUE = \
+ yy_create_buffer(yyin,YY_BUF_SIZE ); \
+ } \
+ YY_CURRENT_BUFFER_LVALUE->yy_at_bol = at_bol; \
+ }
+
+#define YY_AT_BOL() (YY_CURRENT_BUFFER_LVALUE->yy_at_bol)
+
+/* Begin user sect3 */
+
+typedef unsigned char YY_CHAR;
+
+FILE *yyin = (FILE *) 0, *yyout = (FILE *) 0;
+
+typedef int yy_state_type;
+
+extern int yylineno;
+
+int yylineno = 1;
+
+extern char *yytext;
+#define yytext_ptr yytext
+
+static yy_state_type yy_get_previous_state (void );
+static yy_state_type yy_try_NUL_trans (yy_state_type current_state );
+static int yy_get_next_buffer (void );
+static void yy_fatal_error (yyconst char msg[] );
+
+/* Done after the current pattern has been matched and before the
+ * corresponding action - sets up yytext.
+ */
+#define YY_DO_BEFORE_ACTION \
+ (yytext_ptr) = yy_bp; \
+ yyleng = (size_t) (yy_cp - yy_bp); \
+ (yy_hold_char) = *yy_cp; \
+ *yy_cp = '\0'; \
+ (yy_c_buf_p) = yy_cp;
+
+#define YY_NUM_RULES 96
+#define YY_END_OF_BUFFER 97
+/* This struct is not used in this scanner,
+ but its presence is necessary. */
+struct yy_trans_info
+ {
+ flex_int32_t yy_verify;
+ flex_int32_t yy_nxt;
+ };
+static yyconst flex_int16_t yy_accept[411] =
+ { 0,
+ 0, 0, 2, 2, 97, 96, 94, 95, 93, 80,
+ 96, 91, 82, 85, 96, 68, 69, 81, 77, 73,
+ 78, 76, 70, 59, 59, 72, 89, 83, 90, 84,
+ 88, 60, 74, 71, 75, 86, 60, 60, 60, 60,
+ 60, 60, 60, 60, 60, 60, 60, 60, 60, 44,
+ 87, 45, 79, 2, 2, 2, 2, 2, 2, 2,
+ 2, 2, 2, 2, 2, 3, 2, 2, 2, 2,
+ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
+ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
+ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
+
+ 2, 47, 0, 61, 0, 53, 51, 52, 0, 62,
+ 0, 42, 38, 40, 39, 41, 58, 1, 0, 43,
+ 57, 59, 0, 63, 48, 46, 49, 64, 60, 54,
+ 60, 60, 60, 60, 25, 60, 60, 60, 60, 60,
+ 23, 28, 60, 60, 60, 60, 60, 60, 60, 60,
+ 60, 60, 60, 60, 55, 50, 2, 2, 2, 2,
+ 2, 2, 2, 2, 2, 2, 2, 4, 2, 2,
+ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
+ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
+ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
+
+ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
+ 2, 36, 61, 62, 0, 92, 57, 56, 35, 66,
+ 65, 60, 60, 60, 60, 60, 60, 60, 60, 60,
+ 60, 14, 60, 60, 37, 16, 60, 60, 60, 60,
+ 60, 60, 31, 60, 17, 60, 60, 60, 2, 2,
+ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
+ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
+ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
+ 2, 2, 2, 2, 2, 67, 60, 9, 60, 60,
+ 60, 60, 60, 60, 27, 60, 60, 60, 60, 5,
+
+ 60, 60, 24, 60, 6, 60, 21, 60, 33, 2,
+ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
+ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
+ 2, 2, 2, 8, 10, 11, 60, 60, 60, 60,
+ 7, 60, 60, 60, 60, 60, 30, 60, 26, 2,
+ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
+ 2, 2, 2, 2, 2, 60, 60, 60, 22, 60,
+ 60, 60, 20, 29, 32, 2, 2, 2, 2, 2,
+ 2, 2, 2, 2, 2, 60, 60, 12, 13, 60,
+ 60, 2, 2, 2, 2, 2, 2, 18, 34, 19,
+
+ 60, 2, 2, 2, 2, 60, 2, 15, 2, 0
+ } ;
+
+static yyconst flex_int16_t yy_base[431] =
+ { 0,
+ 0, 118, 236, 354, 5760, 5761, 5761, 5761, 5761, 5698,
+ 416, 5761, 5697, 92, 57, 5761, 5761, 5696, 86, 5761,
+ 87, 85, 205, 435, 205, 5761, 5761, 83, 5695, 84,
+ 5761, 0, 5761, 5761, 5761, 5694, 5640, 152, 264, 5645,
+ 272, 264, 5651, 147, 5650, 5631, 264, 270, 266, 5761,
+ 421, 5761, 5761, 0, 0, 0, 0, 5688, 459, 0,
+ 5687, 456, 456, 0, 0, 449, 454, 0, 455, 470,
+ 467, 483, 508, 0, 0, 312, 5686, 318, 0, 556,
+ 0, 0, 0, 5685, 5631, 402, 401, 5636, 469, 274,
+ 5642, 429, 5641, 5622, 463, 471, 399, 0, 445, 0,
+
+ 0, 5679, 507, 5761, 508, 5761, 5761, 5761, 175, 5761,
+ 504, 5761, 5761, 5761, 5761, 5761, 631, 5761, 5729, 5761,
+ 641, 653, 663, 5761, 5761, 5677, 5761, 488, 0, 5761,
+ 5636, 437, 5626, 473, 0, 5620, 5626, 5623, 5618, 5621,
+ 0, 5615, 5613, 5609, 5619, 5610, 5620, 465, 390, 5612,
+ 5609, 5617, 5616, 5604, 5761, 5761, 0, 5658, 555, 0,
+ 556, 0, 0, 0, 682, 0, 683, 5761, 0, 0,
+ 0, 0, 686, 290, 0, 696, 730, 740, 0, 0,
+ 5657, 0, 511, 795, 0, 5616, 472, 5606, 493, 0,
+ 5600, 5606, 5603, 5598, 5601, 0, 5595, 5593, 5589, 5599,
+
+ 5590, 5600, 471, 497, 5592, 5589, 5597, 5596, 5584, 0,
+ 0, 5761, 510, 719, 5689, 5761, 764, 870, 5761, 5761,
+ 5637, 5600, 5595, 5596, 477, 5577, 5596, 5591, 5590, 5575,
+ 5592, 0, 5589, 5571, 0, 0, 5578, 5568, 5568, 5568,
+ 5571, 5580, 0, 5579, 0, 4788, 4778, 4781, 0, 735,
+ 731, 573, 0, 893, 908, 0, 0, 4823, 963, 519,
+ 520, 738, 705, 4786, 626, 658, 657, 4759, 4758, 553,
+ 739, 4757, 4756, 659, 707, 835, 837, 660, 702, 4755,
+ 728, 4754, 701, 858, 729, 5761, 4743, 0, 3179, 3165,
+ 3175, 3176, 3161, 3135, 0, 3149, 3141, 3132, 3150, 0,
+
+ 3132, 3146, 0, 2137, 0, 2077, 0, 2085, 0, 0,
+ 882, 2088, 883, 884, 885, 168, 836, 886, 2087, 731,
+ 887, 888, 2086, 2059, 889, 669, 2058, 737, 2057, 989,
+ 2056, 790, 2055, 0, 0, 0, 2041, 2047, 1010, 1016,
+ 0, 1008, 1006, 1000, 999, 1004, 0, 1004, 0, 962,
+ 960, 959, 891, 894, 990, 895, 958, 991, 992, 993,
+ 994, 997, 957, 896, 927, 814, 828, 812, 0, 768,
+ 777, 787, 0, 0, 0, 995, 924, 998, 761, 833,
+ 996, 760, 734, 733, 703, 625, 586, 0, 0, 539,
+ 493, 925, 999, 481, 450, 1005, 926, 0, 0, 0,
+
+ 394, 321, 285, 153, 1008, 80, 897, 0, 34, 5761,
+ 1119, 1374, 1629, 1884, 2092, 2214, 2469, 2724, 2979, 3187,
+ 3309, 3564, 3819, 4074, 4329, 4584, 4792, 4914, 5169, 5424
+ } ;
+
+static yyconst flex_int16_t yy_def[431] =
+ { 0,
+ 411, 411, 412, 412, 410, 410, 410, 410, 410, 410,
+ 413, 410, 410, 410, 414, 410, 410, 410, 410, 410,
+ 410, 410, 410, 410, 410, 410, 410, 410, 410, 410,
+ 410, 415, 410, 410, 410, 410, 415, 415, 415, 415,
+ 415, 415, 415, 415, 415, 415, 415, 415, 415, 410,
+ 410, 410, 410, 416, 416, 416, 416, 416, 417, 416,
+ 416, 416, 418, 416, 416, 410, 416, 416, 416, 416,
+ 416, 416, 416, 416, 416, 416, 416, 416, 416, 416,
+ 416, 416, 416, 416, 80, 80, 80, 80, 80, 80,
+ 80, 80, 80, 80, 80, 80, 80, 416, 416, 416,
+
+ 416, 410, 413, 410, 413, 410, 410, 410, 414, 410,
+ 414, 410, 410, 410, 410, 410, 410, 410, 419, 410,
+ 410, 410, 410, 410, 410, 410, 410, 410, 420, 410,
+ 420, 420, 420, 420, 420, 420, 420, 420, 420, 420,
+ 420, 420, 420, 420, 420, 420, 420, 420, 420, 420,
+ 420, 420, 420, 420, 410, 410, 416, 416, 421, 416,
+ 421, 416, 416, 416, 422, 416, 422, 410, 416, 416,
+ 416, 416, 416, 423, 416, 416, 416, 416, 416, 416,
+ 416, 416, 416, 416, 416, 184, 184, 184, 184, 184,
+ 184, 184, 184, 184, 184, 184, 184, 184, 184, 184,
+
+ 184, 184, 184, 184, 184, 184, 184, 184, 184, 416,
+ 416, 410, 424, 425, 426, 410, 410, 410, 410, 410,
+ 410, 427, 427, 427, 427, 427, 427, 427, 427, 427,
+ 427, 427, 427, 427, 427, 427, 427, 427, 427, 427,
+ 427, 427, 427, 427, 427, 427, 427, 427, 416, 428,
+ 429, 430, 416, 416, 416, 416, 416, 416, 416, 259,
+ 259, 259, 259, 259, 259, 259, 259, 259, 259, 259,
+ 259, 259, 259, 259, 259, 259, 259, 259, 259, 259,
+ 259, 259, 259, 259, 259, 410, 427, 427, 427, 427,
+ 427, 427, 427, 427, 427, 427, 427, 427, 427, 427,
+
+ 427, 427, 427, 427, 427, 427, 427, 427, 427, 416,
+ 259, 259, 259, 259, 259, 259, 259, 259, 259, 259,
+ 259, 259, 259, 259, 259, 259, 259, 259, 259, 259,
+ 259, 259, 259, 427, 427, 427, 427, 427, 427, 427,
+ 427, 427, 427, 427, 427, 427, 427, 427, 427, 259,
+ 259, 259, 259, 259, 259, 259, 259, 259, 259, 259,
+ 259, 259, 259, 259, 259, 427, 427, 427, 427, 427,
+ 427, 427, 427, 427, 427, 259, 259, 259, 259, 259,
+ 259, 259, 259, 259, 259, 427, 427, 427, 427, 427,
+ 427, 259, 259, 259, 259, 259, 259, 427, 427, 427,
+
+ 427, 259, 259, 259, 259, 427, 259, 427, 259, 0,
+ 410, 410, 410, 410, 410, 410, 410, 410, 410, 410,
+ 410, 410, 410, 410, 410, 410, 410, 410, 410, 410
+ } ;
+
+static yyconst flex_int16_t yy_nxt[6018] =
+ { 0,
+ 410, 410, 410, 410, 410, 410, 410, 410, 7, 8,
+ 410, 410, 410, 410, 410, 410, 410, 410, 410, 410,
+ 410, 410, 410, 410, 410, 410, 410, 410, 410, 410,
+ 410, 9, 10, 11, 410, 12, 13, 14, 15, 16,
+ 17, 18, 19, 20, 21, 22, 23, 24, 25, 25,
+ 25, 25, 25, 25, 25, 25, 25, 26, 27, 28,
+ 29, 30, 31, 410, 32, 32, 32, 32, 32, 32,
+ 32, 32, 32, 32, 32, 32, 32, 32, 32, 32,
+ 32, 32, 32, 32, 32, 32, 32, 32, 32, 32,
+ 33, 34, 35, 36, 32, 110, 32, 37, 38, 39,
+
+ 40, 41, 32, 32, 42, 32, 32, 43, 32, 44,
+ 32, 32, 32, 45, 46, 47, 32, 48, 49, 32,
+ 32, 32, 50, 51, 52, 53, 7, 8, 113, 107,
+ 184, 115, 117, 117, 117, 117, 117, 117, 117, 117,
+ 117, 117, 124, 125, 127, 128, 114, 116, 111, 9,
+ 10, 11, 108, 12, 13, 14, 15, 16, 17, 18,
+ 19, 20, 21, 22, 23, 24, 25, 25, 25, 25,
+ 25, 25, 25, 25, 25, 26, 27, 28, 29, 30,
+ 31, 408, 32, 32, 32, 32, 32, 32, 32, 32,
+ 32, 32, 32, 32, 32, 32, 32, 32, 32, 32,
+
+ 32, 32, 32, 32, 32, 32, 32, 32, 33, 34,
+ 35, 36, 32, 110, 32, 37, 38, 39, 40, 41,
+ 32, 32, 42, 32, 32, 43, 32, 44, 32, 32,
+ 32, 45, 46, 47, 32, 48, 49, 32, 32, 32,
+ 50, 51, 52, 53, 55, 56, 118, 144, 132, 184,
+ 121, 119, 122, 122, 122, 122, 122, 122, 122, 122,
+ 122, 122, 133, 145, 184, 120, 111, 57, 58, 59,
+ 354, 60, 61, 62, 63, 64, 65, 66, 67, 68,
+ 69, 70, 71, 72, 73, 73, 73, 73, 73, 73,
+ 73, 73, 73, 74, 75, 76, 77, 78, 79, 253,
+
+ 80, 80, 80, 80, 80, 80, 80, 80, 80, 80,
+ 80, 80, 80, 80, 80, 80, 80, 80, 80, 80,
+ 80, 80, 80, 80, 80, 80, 81, 82, 83, 84,
+ 80, 215, 80, 85, 86, 87, 88, 89, 80, 80,
+ 90, 80, 80, 91, 80, 92, 80, 80, 80, 93,
+ 94, 95, 80, 96, 97, 80, 80, 80, 98, 99,
+ 100, 101, 55, 56, 134, 141, 151, 148, 137, 153,
+ 154, 179, 180, 142, 135, 196, 138, 149, 182, 183,
+ 152, 184, 139, 197, 150, 57, 58, 59, 140, 60,
+ 61, 62, 63, 64, 65, 66, 67, 68, 69, 70,
+
+ 71, 72, 73, 73, 73, 73, 73, 73, 73, 73,
+ 73, 74, 75, 76, 77, 78, 79, 184, 80, 80,
+ 80, 80, 80, 80, 80, 80, 80, 80, 80, 80,
+ 80, 80, 80, 80, 80, 80, 80, 80, 80, 80,
+ 80, 80, 80, 80, 81, 82, 83, 84, 80, 104,
+ 80, 85, 86, 87, 88, 89, 80, 80, 90, 80,
+ 80, 91, 80, 92, 80, 80, 80, 93, 94, 95,
+ 80, 96, 97, 80, 80, 80, 98, 99, 100, 101,
+ 121, 155, 122, 122, 122, 122, 122, 122, 122, 122,
+ 122, 122, 160, 163, 166, 168, 169, 109, 187, 171,
+
+ 103, 189, 208, 209, 406, 210, 242, 105, 118, 112,
+ 243, 190, 188, 174, 170, 172, 164, 173, 173, 173,
+ 173, 173, 173, 173, 173, 173, 173, 175, 176, 199,
+ 177, 177, 177, 177, 177, 177, 177, 177, 177, 177,
+ 104, 213, 214, 104, 156, 200, 184, 167, 220, 221,
+ 161, 223, 224, 176, 123, 177, 177, 177, 177, 177,
+ 177, 177, 177, 177, 177, 192, 203, 206, 211, 240,
+ 226, 257, 258, 193, 227, 277, 204, 184, 241, 194,
+ 228, 207, 253, 205, 278, 195, 260, 261, 160, 250,
+ 263, 290, 291, 401, 264, 111, 103, 103, 105, 105,
+
+ 265, 105, 178, 184, 184, 184, 184, 184, 184, 184,
+ 184, 184, 184, 279, 215, 184, 184, 280, 313, 312,
+ 184, 184, 184, 184, 184, 184, 184, 184, 184, 184,
+ 184, 184, 184, 184, 184, 184, 184, 184, 184, 184,
+ 184, 184, 184, 184, 184, 184, 161, 161, 400, 184,
+ 184, 322, 184, 184, 184, 184, 184, 184, 184, 184,
+ 184, 184, 184, 184, 184, 184, 184, 184, 184, 184,
+ 184, 184, 184, 184, 184, 184, 184, 184, 117, 117,
+ 117, 117, 117, 117, 117, 117, 117, 117, 217, 217,
+ 217, 217, 217, 217, 217, 217, 217, 217, 121, 399,
+
+ 122, 122, 122, 122, 122, 122, 122, 122, 122, 122,
+ 218, 218, 218, 218, 218, 218, 218, 218, 218, 218,
+ 166, 251, 184, 109, 109, 398, 318, 218, 218, 218,
+ 218, 218, 218, 173, 173, 173, 173, 173, 173, 173,
+ 173, 173, 173, 254, 254, 254, 254, 254, 254, 254,
+ 254, 254, 254, 184, 184, 184, 184, 110, 319, 218,
+ 218, 218, 218, 218, 218, 184, 324, 362, 160, 166,
+ 328, 320, 109, 167, 167, 176, 103, 177, 177, 177,
+ 177, 177, 177, 177, 177, 177, 177, 255, 255, 255,
+ 255, 255, 255, 255, 255, 255, 255, 184, 184, 184,
+
+ 331, 184, 329, 184, 255, 255, 255, 255, 255, 255,
+ 111, 217, 217, 217, 217, 217, 217, 217, 217, 217,
+ 217, 316, 167, 325, 184, 184, 161, 184, 330, 184,
+ 184, 357, 333, 184, 184, 184, 255, 255, 255, 255,
+ 255, 255, 184, 184, 184, 184, 184, 184, 184, 184,
+ 184, 184, 314, 315, 323, 363, 184, 184, 397, 184,
+ 184, 184, 184, 184, 184, 184, 184, 184, 184, 184,
+ 184, 184, 184, 184, 184, 184, 184, 184, 184, 184,
+ 184, 184, 184, 184, 184, 391, 184, 390, 389, 184,
+ 365, 184, 184, 184, 184, 184, 184, 184, 184, 184,
+
+ 184, 184, 184, 184, 184, 184, 184, 184, 184, 184,
+ 184, 184, 184, 184, 184, 184, 184, 218, 218, 218,
+ 218, 218, 218, 218, 218, 218, 218, 388, 387, 184,
+ 386, 184, 184, 184, 218, 218, 218, 218, 218, 218,
+ 254, 254, 254, 254, 254, 254, 254, 254, 254, 254,
+ 326, 327, 355, 395, 184, 255, 255, 255, 255, 255,
+ 255, 255, 255, 255, 255, 332, 218, 218, 218, 218,
+ 218, 218, 255, 255, 255, 255, 255, 255, 184, 184,
+ 184, 184, 184, 184, 184, 184, 351, 184, 350, 353,
+ 184, 184, 184, 184, 358, 379, 377, 385, 409, 352,
+
+ 376, 356, 361, 359, 255, 255, 255, 255, 255, 255,
+ 184, 184, 184, 184, 184, 184, 184, 184, 184, 184,
+ 184, 184, 184, 184, 393, 402, 405, 184, 184, 184,
+ 184, 184, 184, 184, 184, 184, 184, 184, 184, 184,
+ 184, 184, 184, 184, 184, 184, 184, 184, 184, 184,
+ 184, 184, 184, 184, 184, 184, 184, 184, 184, 311,
+ 184, 184, 184, 184, 184, 184, 184, 184, 184, 184,
+ 184, 184, 184, 184, 184, 184, 184, 184, 184, 184,
+ 184, 184, 184, 184, 184, 184, 184, 184, 184, 184,
+ 184, 184, 184, 184, 184, 184, 381, 378, 380, 364,
+
+ 384, 184, 382, 383, 184, 375, 396, 374, 373, 372,
+ 371, 392, 403, 394, 404, 370, 369, 368, 407, 6,
+ 6, 6, 6, 6, 6, 6, 6, 6, 6, 6,
+ 6, 6, 6, 6, 6, 6, 6, 6, 6, 6,
+ 6, 6, 6, 6, 6, 6, 6, 6, 6, 6,
+ 6, 6, 6, 6, 6, 6, 6, 6, 6, 6,
+ 6, 6, 6, 6, 6, 6, 6, 6, 6, 6,
+ 6, 6, 6, 6, 6, 6, 6, 6, 6, 6,
+ 6, 6, 6, 6, 6, 6, 6, 6, 6, 6,
+ 6, 6, 6, 6, 6, 6, 6, 6, 6, 6,
+
+ 6, 6, 6, 6, 6, 6, 6, 6, 6, 6,
+ 6, 6, 6, 6, 6, 6, 6, 6, 6, 6,
+ 6, 6, 6, 6, 6, 6, 6, 6, 6, 6,
+ 6, 6, 6, 6, 6, 6, 6, 6, 6, 6,
+ 6, 6, 6, 6, 6, 6, 6, 6, 6, 6,
+ 6, 6, 6, 6, 6, 6, 6, 6, 6, 6,
+ 6, 6, 6, 6, 6, 6, 6, 6, 6, 6,
+ 6, 6, 6, 6, 6, 6, 6, 6, 6, 6,
+ 6, 6, 6, 6, 6, 6, 6, 6, 6, 6,
+ 6, 6, 6, 6, 6, 6, 6, 6, 6, 6,
+
+ 6, 6, 6, 6, 6, 6, 6, 6, 6, 6,
+ 6, 6, 6, 6, 6, 6, 6, 6, 6, 6,
+ 6, 6, 6, 6, 6, 6, 6, 6, 6, 6,
+ 6, 6, 6, 6, 6, 6, 6, 6, 6, 6,
+ 6, 6, 6, 6, 6, 6, 6, 6, 6, 6,
+ 6, 6, 6, 6, 6, 6, 6, 6, 6, 6,
+ 6, 6, 6, 6, 6, 6, 6, 6, 6, 6,
+ 6, 6, 6, 6, 54, 54, 54, 54, 54, 54,
+ 54, 54, 54, 54, 54, 54, 54, 54, 54, 54,
+ 54, 54, 54, 54, 54, 54, 54, 54, 54, 54,
+
+ 54, 54, 54, 54, 54, 54, 54, 54, 54, 54,
+ 54, 54, 54, 54, 54, 54, 54, 54, 54, 54,
+ 54, 54, 54, 54, 54, 54, 54, 54, 54, 54,
+ 54, 54, 54, 54, 54, 54, 54, 54, 54, 54,
+ 54, 54, 54, 54, 54, 54, 54, 54, 54, 54,
+ 54, 54, 54, 54, 54, 54, 54, 54, 54, 54,
+ 54, 54, 54, 54, 54, 54, 54, 54, 54, 54,
+ 54, 54, 54, 54, 54, 54, 54, 54, 54, 54,
+ 54, 54, 54, 54, 54, 54, 54, 54, 54, 54,
+ 54, 54, 54, 54, 54, 54, 54, 54, 54, 54,
+
+ 54, 54, 54, 54, 54, 54, 54, 54, 54, 54,
+ 54, 54, 54, 54, 54, 54, 54, 54, 54, 54,
+ 54, 54, 54, 54, 54, 54, 54, 54, 54, 54,
+ 54, 54, 54, 54, 54, 54, 54, 54, 54, 54,
+ 54, 54, 54, 54, 54, 54, 54, 54, 54, 54,
+ 54, 54, 54, 54, 54, 54, 54, 54, 54, 54,
+ 54, 54, 54, 54, 54, 54, 54, 54, 54, 54,
+ 54, 54, 54, 54, 54, 54, 54, 54, 54, 54,
+ 54, 54, 54, 54, 54, 54, 54, 54, 54, 54,
+ 54, 54, 54, 54, 54, 54, 54, 54, 54, 54,
+
+ 54, 54, 54, 54, 54, 54, 54, 54, 54, 54,
+ 54, 54, 54, 54, 54, 54, 54, 54, 54, 54,
+ 54, 54, 54, 54, 54, 54, 54, 54, 54, 103,
+ 103, 103, 103, 103, 103, 103, 103, 103, 103, 103,
+ 103, 103, 103, 103, 103, 103, 103, 103, 103, 103,
+ 103, 103, 103, 103, 103, 103, 103, 103, 103, 103,
+ 103, 103, 103, 103, 103, 103, 103, 103, 103, 103,
+ 103, 103, 103, 103, 103, 103, 103, 103, 103, 103,
+ 103, 103, 103, 103, 103, 103, 103, 103, 103, 103,
+ 103, 103, 103, 103, 103, 103, 103, 103, 103, 103,
+
+ 103, 103, 103, 103, 103, 103, 103, 103, 103, 103,
+ 103, 103, 103, 103, 103, 103, 103, 103, 103, 103,
+ 103, 103, 103, 103, 103, 103, 103, 103, 103, 103,
+ 103, 103, 103, 103, 103, 103, 103, 103, 103, 103,
+ 103, 103, 103, 103, 103, 103, 103, 103, 103, 103,
+ 103, 103, 103, 103, 103, 103, 103, 103, 103, 103,
+ 103, 103, 103, 103, 103, 103, 103, 103, 103, 103,
+ 103, 103, 103, 103, 103, 103, 103, 103, 103, 103,
+ 103, 103, 103, 103, 103, 103, 103, 103, 103, 103,
+ 103, 103, 103, 103, 103, 103, 103, 103, 103, 103,
+
+ 103, 103, 103, 103, 103, 103, 103, 103, 103, 103,
+ 103, 103, 103, 103, 103, 103, 103, 103, 103, 103,
+ 103, 103, 103, 103, 103, 103, 103, 103, 103, 103,
+ 103, 103, 103, 103, 103, 103, 103, 103, 103, 103,
+ 103, 103, 103, 103, 103, 103, 103, 103, 103, 103,
+ 103, 103, 103, 103, 103, 103, 103, 103, 103, 103,
+ 103, 103, 103, 103, 103, 103, 103, 103, 103, 103,
+ 103, 103, 103, 103, 103, 103, 103, 103, 103, 103,
+ 103, 103, 103, 103, 109, 109, 109, 109, 109, 109,
+ 109, 109, 109, 109, 109, 109, 109, 109, 109, 109,
+
+ 109, 109, 109, 109, 109, 109, 109, 109, 109, 109,
+ 109, 109, 109, 109, 109, 109, 109, 109, 109, 109,
+ 109, 109, 109, 109, 109, 109, 109, 109, 109, 109,
+ 109, 109, 109, 109, 109, 109, 109, 109, 109, 109,
+ 109, 109, 109, 109, 109, 109, 109, 109, 109, 109,
+ 109, 109, 109, 109, 109, 109, 109, 109, 109, 109,
+ 109, 109, 109, 109, 109, 109, 109, 109, 109, 109,
+ 109, 109, 109, 109, 109, 109, 109, 109, 109, 109,
+ 109, 109, 109, 109, 109, 109, 109, 109, 109, 109,
+ 109, 109, 109, 109, 109, 109, 109, 109, 109, 109,
+
+ 109, 109, 109, 109, 109, 109, 109, 109, 109, 109,
+ 109, 109, 109, 109, 109, 109, 109, 109, 109, 109,
+ 109, 109, 109, 109, 109, 109, 109, 109, 109, 109,
+ 109, 109, 109, 109, 109, 109, 109, 109, 109, 109,
+ 109, 109, 109, 109, 109, 109, 109, 109, 109, 109,
+ 109, 109, 109, 109, 109, 109, 109, 109, 109, 109,
+ 109, 109, 109, 109, 109, 109, 109, 109, 109, 109,
+ 109, 109, 109, 109, 109, 109, 109, 109, 109, 109,
+ 109, 109, 109, 109, 109, 109, 109, 109, 109, 109,
+ 109, 109, 109, 109, 109, 109, 109, 109, 109, 109,
+
+ 109, 109, 109, 109, 109, 109, 109, 109, 109, 109,
+ 109, 109, 109, 109, 109, 109, 109, 109, 109, 109,
+ 109, 109, 109, 109, 109, 109, 109, 109, 109, 109,
+ 109, 109, 109, 109, 109, 109, 109, 109, 109, 129,
+ 129, 129, 129, 129, 129, 129, 129, 129, 129, 367,
+ 366, 184, 184, 184, 184, 184, 129, 129, 129, 129,
+ 129, 129, 129, 129, 129, 129, 129, 129, 129, 129,
+ 129, 129, 129, 129, 129, 129, 129, 129, 129, 129,
+ 129, 129, 360, 184, 184, 349, 129, 348, 129, 129,
+ 129, 129, 129, 129, 129, 129, 129, 129, 129, 129,
+
+ 129, 129, 129, 129, 129, 129, 129, 129, 129, 129,
+ 129, 129, 129, 129, 157, 157, 157, 157, 157, 157,
+ 157, 157, 157, 157, 157, 157, 157, 157, 157, 157,
+ 157, 157, 157, 157, 157, 157, 157, 157, 157, 157,
+ 157, 157, 157, 157, 157, 157, 157, 157, 157, 157,
+ 157, 157, 157, 157, 157, 347, 157, 157, 157, 157,
+ 157, 157, 157, 157, 157, 157, 157, 157, 157, 157,
+ 157, 157, 157, 157, 157, 157, 157, 157, 157, 157,
+ 157, 157, 157, 157, 157, 157, 157, 157, 157, 157,
+ 157, 157, 157, 157, 157, 157, 157, 157, 157, 157,
+
+ 157, 157, 157, 157, 157, 157, 157, 157, 157, 157,
+ 157, 157, 157, 157, 157, 157, 157, 157, 157, 157,
+ 157, 157, 157, 157, 157, 157, 157, 157, 157, 157,
+ 157, 157, 157, 157, 157, 157, 157, 157, 157, 157,
+ 157, 157, 157, 157, 157, 157, 157, 157, 157, 157,
+ 157, 157, 157, 157, 157, 157, 157, 157, 157, 157,
+ 157, 157, 157, 157, 157, 157, 157, 157, 157, 157,
+ 157, 157, 157, 157, 157, 157, 157, 157, 157, 157,
+ 157, 157, 157, 157, 157, 157, 157, 157, 157, 157,
+ 157, 157, 157, 157, 157, 157, 157, 157, 157, 157,
+
+ 157, 157, 157, 157, 157, 157, 157, 157, 157, 157,
+ 157, 157, 157, 157, 157, 157, 157, 157, 157, 157,
+ 157, 157, 157, 157, 157, 157, 157, 157, 157, 157,
+ 157, 157, 157, 157, 157, 157, 157, 157, 157, 157,
+ 157, 157, 157, 157, 157, 157, 157, 157, 157, 157,
+ 157, 157, 157, 157, 157, 157, 157, 157, 157, 157,
+ 157, 157, 157, 157, 157, 157, 157, 157, 157, 159,
+ 159, 159, 159, 159, 159, 159, 159, 159, 159, 159,
+ 159, 159, 159, 159, 159, 159, 159, 159, 159, 159,
+ 159, 159, 159, 159, 159, 159, 159, 159, 159, 159,
+
+ 159, 159, 159, 159, 159, 159, 159, 159, 159, 159,
+ 159, 159, 159, 159, 159, 159, 159, 159, 159, 159,
+ 159, 159, 159, 159, 159, 159, 159, 159, 159, 159,
+ 159, 159, 159, 159, 159, 159, 159, 159, 159, 159,
+ 159, 159, 159, 159, 159, 159, 159, 159, 159, 159,
+ 159, 159, 159, 159, 159, 159, 159, 159, 159, 159,
+ 159, 159, 159, 159, 159, 159, 159, 159, 159, 159,
+ 159, 159, 159, 159, 159, 159, 159, 159, 159, 159,
+ 159, 159, 159, 159, 159, 159, 159, 159, 159, 159,
+ 159, 159, 159, 159, 159, 159, 159, 159, 159, 159,
+
+ 159, 159, 159, 159, 159, 159, 159, 159, 159, 159,
+ 159, 159, 159, 159, 159, 159, 159, 159, 159, 159,
+ 159, 159, 159, 159, 159, 159, 159, 159, 159, 159,
+ 159, 159, 159, 159, 159, 159, 159, 159, 159, 159,
+ 159, 159, 159, 159, 159, 159, 159, 159, 159, 159,
+ 159, 159, 159, 159, 159, 159, 159, 159, 159, 159,
+ 159, 159, 159, 159, 159, 159, 159, 159, 159, 159,
+ 159, 159, 159, 159, 159, 159, 159, 159, 159, 159,
+ 159, 159, 159, 159, 159, 159, 159, 159, 159, 159,
+ 159, 159, 159, 159, 159, 159, 159, 159, 159, 159,
+
+ 159, 159, 159, 159, 159, 159, 159, 159, 159, 159,
+ 159, 159, 159, 159, 159, 159, 159, 159, 159, 159,
+ 159, 159, 159, 159, 165, 165, 165, 165, 165, 165,
+ 165, 165, 165, 165, 165, 165, 165, 165, 165, 165,
+ 165, 165, 165, 165, 165, 165, 165, 165, 165, 165,
+ 165, 165, 165, 165, 165, 165, 165, 165, 165, 165,
+ 165, 165, 165, 165, 165, 165, 165, 165, 165, 165,
+ 165, 165, 165, 165, 165, 165, 165, 165, 165, 165,
+ 165, 165, 165, 165, 165, 165, 165, 165, 165, 165,
+ 165, 165, 165, 165, 165, 165, 165, 165, 165, 165,
+
+ 165, 165, 165, 165, 165, 165, 165, 165, 165, 165,
+ 165, 165, 165, 165, 165, 165, 165, 165, 165, 165,
+ 165, 165, 165, 165, 165, 165, 165, 165, 165, 165,
+ 165, 165, 165, 165, 165, 165, 165, 165, 165, 165,
+ 165, 165, 165, 165, 165, 165, 165, 165, 165, 165,
+ 165, 165, 165, 165, 165, 165, 165, 165, 165, 165,
+ 165, 165, 165, 165, 165, 165, 165, 165, 165, 165,
+ 165, 165, 165, 165, 165, 165, 165, 165, 165, 165,
+ 165, 165, 165, 165, 165, 165, 165, 165, 165, 165,
+ 165, 165, 165, 165, 165, 165, 165, 165, 165, 165,
+
+ 165, 165, 165, 165, 165, 165, 165, 165, 165, 165,
+ 165, 165, 165, 165, 165, 165, 165, 165, 165, 165,
+ 165, 165, 165, 165, 165, 165, 165, 165, 165, 165,
+ 165, 165, 165, 165, 165, 165, 165, 165, 165, 165,
+ 165, 165, 165, 165, 165, 165, 165, 165, 165, 165,
+ 165, 165, 165, 165, 165, 165, 165, 165, 165, 165,
+ 165, 165, 165, 165, 165, 165, 165, 165, 165, 165,
+ 165, 165, 165, 165, 165, 165, 165, 165, 165, 215,
+ 215, 215, 215, 215, 215, 215, 215, 215, 215, 215,
+ 215, 215, 215, 215, 215, 215, 215, 215, 215, 215,
+
+ 215, 215, 215, 215, 215, 215, 215, 215, 215, 215,
+ 215, 215, 215, 215, 215, 215, 215, 215, 215, 215,
+ 215, 215, 215, 215, 215, 215, 215, 215, 215, 215,
+ 215, 215, 215, 215, 215, 215, 215, 215, 215, 215,
+ 215, 215, 215, 215, 215, 215, 215, 215, 215, 215,
+ 215, 215, 215, 215, 215, 215, 215, 215, 215, 215,
+ 215, 215, 215, 215, 215, 215, 215, 215, 215, 215,
+ 215, 215, 215, 215, 215, 215, 215, 215, 215, 215,
+ 215, 215, 215, 215, 215, 215, 215, 215, 215, 215,
+ 215, 215, 215, 215, 215, 215, 215, 215, 215, 215,
+
+ 215, 215, 215, 215, 215, 215, 215, 215, 215, 215,
+ 215, 215, 215, 215, 215, 215, 215, 215, 215, 215,
+ 215, 215, 215, 215, 215, 215, 215, 215, 215, 215,
+ 215, 215, 215, 215, 215, 215, 215, 215, 215, 215,
+ 215, 215, 215, 215, 215, 215, 215, 215, 215, 215,
+ 215, 215, 215, 215, 215, 215, 215, 215, 215, 215,
+ 215, 215, 215, 215, 215, 215, 215, 215, 215, 215,
+ 215, 215, 215, 215, 215, 215, 215, 215, 215, 215,
+ 215, 215, 215, 215, 215, 215, 215, 215, 215, 215,
+ 215, 215, 215, 215, 215, 215, 215, 215, 215, 215,
+
+ 215, 215, 215, 215, 215, 215, 215, 215, 215, 215,
+ 215, 215, 215, 215, 215, 215, 215, 215, 215, 215,
+ 215, 215, 215, 215, 215, 215, 215, 215, 215, 215,
+ 215, 215, 215, 215, 129, 129, 129, 129, 129, 129,
+ 129, 129, 129, 129, 346, 345, 344, 343, 342, 341,
+ 340, 129, 129, 129, 129, 129, 129, 129, 129, 129,
+ 129, 129, 129, 129, 129, 129, 129, 129, 129, 129,
+ 129, 129, 129, 129, 129, 129, 129, 339, 338, 337,
+ 336, 129, 335, 129, 129, 129, 129, 129, 129, 129,
+ 129, 129, 129, 129, 129, 129, 129, 129, 129, 129,
+
+ 129, 129, 129, 129, 129, 129, 129, 129, 129, 159,
+ 159, 159, 159, 159, 159, 159, 159, 159, 159, 159,
+ 159, 159, 159, 159, 159, 159, 159, 159, 159, 159,
+ 159, 159, 159, 159, 159, 159, 159, 159, 159, 159,
+ 159, 159, 159, 159, 159, 159, 159, 159, 159, 159,
+ 159, 159, 159, 159, 159, 159, 159, 159, 159, 159,
+ 159, 159, 159, 159, 159, 159, 159, 159, 159, 159,
+ 159, 159, 159, 159, 159, 159, 159, 159, 159, 159,
+ 159, 159, 159, 159, 159, 159, 159, 159, 159, 159,
+ 159, 159, 159, 159, 159, 159, 159, 159, 159, 159,
+
+ 159, 159, 159, 159, 159, 159, 159, 159, 159, 159,
+ 159, 159, 159, 159, 159, 159, 159, 159, 159, 159,
+ 159, 159, 159, 159, 159, 159, 159, 159, 159, 159,
+ 159, 159, 159, 159, 159, 159, 159, 159, 159, 159,
+ 159, 159, 159, 159, 159, 159, 159, 159, 159, 159,
+ 159, 159, 159, 159, 159, 159, 159, 159, 159, 159,
+ 159, 159, 159, 159, 159, 159, 159, 159, 159, 159,
+ 159, 159, 159, 159, 159, 159, 159, 159, 159, 159,
+ 159, 159, 159, 159, 159, 159, 159, 159, 159, 159,
+ 159, 159, 159, 159, 159, 159, 159, 159, 159, 159,
+
+ 159, 159, 159, 159, 159, 159, 159, 159, 159, 159,
+ 159, 159, 159, 159, 159, 159, 159, 159, 159, 159,
+ 159, 159, 159, 159, 159, 159, 159, 159, 159, 159,
+ 159, 159, 159, 159, 159, 159, 159, 159, 159, 159,
+ 159, 159, 159, 159, 159, 159, 159, 159, 159, 159,
+ 159, 159, 159, 159, 159, 159, 159, 159, 159, 159,
+ 159, 159, 159, 159, 165, 165, 165, 165, 165, 165,
+ 165, 165, 165, 165, 165, 165, 165, 165, 165, 165,
+ 165, 165, 165, 165, 165, 165, 165, 165, 165, 165,
+ 165, 165, 165, 165, 165, 165, 165, 165, 165, 165,
+
+ 165, 165, 165, 165, 165, 165, 165, 165, 165, 165,
+ 165, 165, 165, 165, 165, 165, 165, 165, 165, 165,
+ 165, 165, 165, 165, 165, 165, 165, 165, 165, 165,
+ 165, 165, 165, 165, 165, 165, 165, 165, 165, 165,
+ 165, 165, 165, 165, 165, 165, 165, 165, 165, 165,
+ 165, 165, 165, 165, 165, 165, 165, 165, 165, 165,
+ 165, 165, 165, 165, 165, 165, 165, 165, 165, 165,
+ 165, 165, 165, 165, 165, 165, 165, 165, 165, 165,
+ 165, 165, 165, 165, 165, 165, 165, 165, 165, 165,
+ 165, 165, 165, 165, 165, 165, 165, 165, 165, 165,
+
+ 165, 165, 165, 165, 165, 165, 165, 165, 165, 165,
+ 165, 165, 165, 165, 165, 165, 165, 165, 165, 165,
+ 165, 165, 165, 165, 165, 165, 165, 165, 165, 165,
+ 165, 165, 165, 165, 165, 165, 165, 165, 165, 165,
+ 165, 165, 165, 165, 165, 165, 165, 165, 165, 165,
+ 165, 165, 165, 165, 165, 165, 165, 165, 165, 165,
+ 165, 165, 165, 165, 165, 165, 165, 165, 165, 165,
+ 165, 165, 165, 165, 165, 165, 165, 165, 165, 165,
+ 165, 165, 165, 165, 165, 165, 165, 165, 165, 165,
+ 165, 165, 165, 165, 165, 165, 165, 165, 165, 165,
+
+ 165, 165, 165, 165, 165, 165, 165, 165, 165, 165,
+ 165, 165, 165, 165, 165, 165, 165, 165, 165, 252,
+ 252, 252, 252, 252, 252, 252, 252, 252, 252, 252,
+ 252, 252, 252, 252, 252, 252, 252, 252, 252, 252,
+ 252, 252, 252, 252, 252, 252, 252, 252, 252, 252,
+ 252, 252, 252, 252, 252, 252, 252, 252, 252, 252,
+ 252, 252, 252, 252, 252, 252, 252, 252, 252, 252,
+ 252, 252, 252, 252, 252, 252, 252, 252, 252, 252,
+ 252, 252, 252, 252, 252, 252, 252, 252, 252, 252,
+ 252, 252, 252, 252, 252, 252, 252, 252, 252, 252,
+
+ 252, 252, 252, 252, 252, 252, 252, 252, 252, 252,
+ 252, 252, 252, 252, 252, 252, 252, 252, 252, 252,
+ 252, 252, 252, 252, 252, 252, 252, 252, 252, 252,
+ 252, 252, 252, 252, 252, 252, 252, 252, 252, 252,
+ 252, 252, 252, 252, 252, 252, 252, 252, 252, 252,
+ 252, 252, 252, 252, 252, 252, 252, 252, 252, 252,
+ 252, 252, 252, 252, 252, 252, 252, 252, 252, 252,
+ 252, 252, 252, 252, 252, 252, 252, 252, 252, 252,
+ 252, 252, 252, 252, 252, 252, 252, 252, 252, 252,
+ 252, 252, 252, 252, 252, 252, 252, 252, 252, 252,
+
+ 252, 252, 252, 252, 252, 252, 252, 252, 252, 252,
+ 252, 252, 252, 252, 252, 252, 252, 252, 252, 252,
+ 252, 252, 252, 252, 252, 252, 252, 252, 252, 252,
+ 252, 252, 252, 252, 252, 252, 252, 252, 252, 252,
+ 252, 252, 252, 252, 252, 252, 252, 252, 252, 252,
+ 252, 252, 252, 252, 252, 252, 252, 252, 252, 252,
+ 252, 252, 252, 252, 252, 252, 252, 252, 252, 252,
+ 252, 252, 252, 252, 103, 103, 103, 103, 103, 103,
+ 103, 103, 103, 103, 103, 103, 103, 103, 103, 103,
+ 103, 103, 103, 103, 103, 103, 103, 103, 103, 103,
+
+ 103, 103, 103, 103, 103, 103, 103, 103, 103, 103,
+ 103, 103, 103, 103, 103, 103, 103, 103, 103, 103,
+ 103, 103, 103, 103, 103, 103, 103, 103, 103, 103,
+ 103, 103, 103, 103, 103, 103, 103, 103, 103, 103,
+ 103, 103, 103, 103, 103, 103, 103, 103, 103, 103,
+ 103, 103, 103, 103, 103, 103, 103, 103, 103, 103,
+ 103, 103, 103, 103, 103, 103, 103, 103, 103, 103,
+ 103, 103, 103, 103, 103, 103, 103, 103, 103, 103,
+ 103, 103, 103, 103, 103, 103, 103, 103, 103, 103,
+ 103, 103, 103, 103, 103, 103, 103, 103, 103, 103,
+
+ 103, 103, 103, 103, 103, 103, 103, 103, 103, 103,
+ 103, 103, 103, 103, 103, 103, 103, 103, 103, 103,
+ 103, 103, 103, 103, 103, 103, 103, 103, 103, 103,
+ 103, 103, 103, 103, 103, 103, 103, 103, 103, 103,
+ 103, 103, 103, 103, 103, 103, 103, 103, 103, 103,
+ 103, 103, 103, 103, 103, 103, 103, 103, 103, 103,
+ 103, 103, 103, 103, 103, 103, 103, 103, 103, 103,
+ 103, 103, 103, 103, 103, 103, 103, 103, 103, 103,
+ 103, 103, 103, 103, 103, 103, 103, 103, 103, 103,
+ 103, 103, 103, 103, 103, 103, 103, 103, 103, 103,
+
+ 103, 103, 103, 103, 103, 103, 103, 103, 103, 103,
+ 103, 103, 103, 103, 103, 103, 103, 103, 103, 103,
+ 103, 103, 103, 103, 103, 103, 103, 103, 103, 109,
+ 109, 109, 109, 109, 109, 109, 109, 109, 109, 109,
+ 109, 109, 109, 109, 109, 109, 109, 109, 109, 109,
+ 109, 109, 109, 109, 109, 109, 109, 109, 109, 109,
+ 109, 109, 109, 109, 109, 109, 109, 109, 109, 109,
+ 109, 109, 109, 109, 109, 109, 109, 109, 109, 109,
+ 109, 109, 109, 109, 109, 109, 109, 109, 109, 109,
+ 109, 109, 109, 109, 109, 109, 109, 109, 109, 109,
+
+ 109, 109, 109, 109, 109, 109, 109, 109, 109, 109,
+ 109, 109, 109, 109, 109, 109, 109, 109, 109, 109,
+ 109, 109, 109, 109, 109, 109, 109, 109, 109, 109,
+ 109, 109, 109, 109, 109, 109, 109, 109, 109, 109,
+ 109, 109, 109, 109, 109, 109, 109, 109, 109, 109,
+ 109, 109, 109, 109, 109, 109, 109, 109, 109, 109,
+ 109, 109, 109, 109, 109, 109, 109, 109, 109, 109,
+ 109, 109, 109, 109, 109, 109, 109, 109, 109, 109,
+ 109, 109, 109, 109, 109, 109, 109, 109, 109, 109,
+ 109, 109, 109, 109, 109, 109, 109, 109, 109, 109,
+
+ 109, 109, 109, 109, 109, 109, 109, 109, 109, 109,
+ 109, 109, 109, 109, 109, 109, 109, 109, 109, 109,
+ 109, 109, 109, 109, 109, 109, 109, 109, 109, 109,
+ 109, 109, 109, 109, 109, 109, 109, 109, 109, 109,
+ 109, 109, 109, 109, 109, 109, 109, 109, 109, 109,
+ 109, 109, 109, 109, 109, 109, 109, 109, 109, 109,
+ 109, 109, 109, 109, 109, 109, 109, 109, 109, 109,
+ 109, 109, 109, 109, 109, 109, 109, 109, 109, 109,
+ 109, 109, 109, 109, 215, 215, 215, 215, 215, 215,
+ 215, 215, 215, 215, 215, 215, 215, 215, 215, 215,
+
+ 215, 215, 215, 215, 215, 215, 215, 215, 215, 215,
+ 215, 215, 215, 215, 215, 215, 215, 215, 215, 215,
+ 215, 215, 215, 215, 215, 215, 215, 215, 215, 215,
+ 215, 215, 215, 215, 215, 215, 215, 215, 215, 215,
+ 215, 215, 215, 215, 215, 215, 215, 215, 215, 215,
+ 215, 215, 215, 215, 215, 215, 215, 215, 215, 215,
+ 215, 215, 215, 215, 215, 215, 215, 215, 215, 215,
+ 215, 215, 215, 215, 215, 215, 215, 215, 215, 215,
+ 215, 215, 215, 215, 215, 215, 215, 215, 215, 215,
+ 215, 215, 215, 215, 215, 215, 215, 215, 215, 215,
+
+ 215, 215, 215, 215, 215, 215, 215, 215, 215, 215,
+ 215, 215, 215, 215, 215, 215, 215, 215, 215, 215,
+ 215, 215, 215, 215, 215, 215, 215, 215, 215, 215,
+ 215, 215, 215, 215, 215, 215, 215, 215, 215, 215,
+ 215, 215, 215, 215, 215, 215, 215, 215, 215, 215,
+ 215, 215, 215, 215, 215, 215, 215, 215, 215, 215,
+ 215, 215, 215, 215, 215, 215, 215, 215, 215, 215,
+ 215, 215, 215, 215, 215, 215, 215, 215, 215, 215,
+ 215, 215, 215, 215, 215, 215, 215, 215, 215, 215,
+ 215, 215, 215, 215, 215, 215, 215, 215, 215, 215,
+
+ 215, 215, 215, 215, 215, 215, 215, 215, 215, 215,
+ 215, 215, 215, 215, 215, 215, 215, 215, 215, 215,
+ 215, 215, 215, 215, 215, 215, 215, 215, 215, 215,
+ 215, 215, 215, 215, 215, 215, 215, 215, 215, 129,
+ 129, 129, 129, 129, 129, 129, 129, 129, 129, 334,
+ 184, 184, 184, 184, 184, 321, 129, 129, 129, 129,
+ 129, 129, 129, 129, 129, 129, 129, 129, 129, 129,
+ 129, 129, 129, 129, 129, 129, 129, 129, 129, 129,
+ 129, 129, 317, 310, 309, 308, 129, 307, 129, 129,
+ 129, 129, 129, 129, 129, 129, 129, 129, 129, 129,
+
+ 129, 129, 129, 129, 129, 129, 129, 129, 129, 129,
+ 129, 129, 129, 129, 159, 159, 159, 159, 159, 159,
+ 159, 159, 159, 159, 159, 159, 159, 159, 159, 159,
+ 159, 159, 159, 159, 159, 159, 159, 159, 159, 159,
+ 159, 159, 159, 159, 159, 159, 159, 159, 159, 159,
+ 159, 159, 159, 159, 159, 159, 159, 159, 159, 159,
+ 159, 159, 159, 159, 159, 159, 159, 159, 159, 159,
+ 159, 159, 159, 159, 159, 159, 159, 159, 159, 159,
+ 159, 159, 159, 159, 159, 159, 159, 159, 159, 159,
+ 159, 159, 159, 159, 159, 159, 159, 159, 159, 159,
+
+ 159, 159, 159, 159, 159, 159, 159, 159, 159, 159,
+ 159, 159, 159, 159, 159, 159, 159, 159, 159, 159,
+ 159, 159, 159, 159, 159, 159, 159, 159, 159, 159,
+ 159, 159, 159, 159, 159, 159, 159, 159, 159, 159,
+ 159, 159, 159, 159, 159, 159, 159, 159, 159, 159,
+ 159, 159, 159, 159, 159, 159, 159, 159, 159, 159,
+ 159, 159, 159, 159, 159, 159, 159, 159, 159, 159,
+ 159, 159, 159, 159, 159, 159, 159, 159, 159, 159,
+ 159, 159, 159, 159, 159, 159, 159, 159, 159, 159,
+ 159, 159, 159, 159, 159, 159, 159, 159, 159, 159,
+
+ 159, 159, 159, 159, 159, 159, 159, 159, 159, 159,
+ 159, 159, 159, 159, 159, 159, 159, 159, 159, 159,
+ 159, 159, 159, 159, 159, 159, 159, 159, 159, 159,
+ 159, 159, 159, 159, 159, 159, 159, 159, 159, 159,
+ 159, 159, 159, 159, 159, 159, 159, 159, 159, 159,
+ 159, 159, 159, 159, 159, 159, 159, 159, 159, 159,
+ 159, 159, 159, 159, 159, 159, 159, 159, 159, 165,
+ 165, 165, 165, 165, 165, 165, 165, 165, 165, 165,
+ 165, 165, 165, 165, 165, 165, 165, 165, 165, 165,
+ 165, 165, 165, 165, 165, 165, 165, 165, 165, 165,
+
+ 165, 165, 165, 165, 165, 165, 165, 165, 165, 165,
+ 165, 165, 165, 165, 165, 165, 165, 165, 165, 165,
+ 165, 165, 165, 165, 165, 165, 165, 165, 165, 165,
+ 165, 165, 165, 165, 165, 165, 165, 165, 165, 165,
+ 165, 165, 165, 165, 165, 165, 165, 165, 165, 165,
+ 165, 165, 165, 165, 165, 165, 165, 165, 165, 165,
+ 165, 165, 165, 165, 165, 165, 165, 165, 165, 165,
+ 165, 165, 165, 165, 165, 165, 165, 165, 165, 165,
+ 165, 165, 165, 165, 165, 165, 165, 165, 165, 165,
+ 165, 165, 165, 165, 165, 165, 165, 165, 165, 165,
+
+ 165, 165, 165, 165, 165, 165, 165, 165, 165, 165,
+ 165, 165, 165, 165, 165, 165, 165, 165, 165, 165,
+ 165, 165, 165, 165, 165, 165, 165, 165, 165, 165,
+ 165, 165, 165, 165, 165, 165, 165, 165, 165, 165,
+ 165, 165, 165, 165, 165, 165, 165, 165, 165, 165,
+ 165, 165, 165, 165, 165, 165, 165, 165, 165, 165,
+ 165, 165, 165, 165, 165, 165, 165, 165, 165, 165,
+ 165, 165, 165, 165, 165, 165, 165, 165, 165, 165,
+ 165, 165, 165, 165, 165, 165, 165, 165, 165, 165,
+ 165, 165, 165, 165, 165, 165, 165, 165, 165, 165,
+
+ 165, 165, 165, 165, 165, 165, 165, 165, 165, 165,
+ 165, 165, 165, 165, 165, 165, 165, 165, 165, 165,
+ 165, 165, 165, 165, 252, 252, 252, 252, 252, 252,
+ 252, 252, 252, 252, 252, 252, 252, 252, 252, 252,
+ 252, 252, 252, 252, 252, 252, 252, 252, 252, 252,
+ 252, 252, 252, 252, 252, 252, 252, 252, 252, 252,
+ 252, 252, 252, 252, 252, 252, 252, 252, 252, 252,
+ 252, 252, 252, 252, 252, 252, 252, 252, 252, 252,
+ 252, 252, 252, 252, 252, 252, 252, 252, 252, 252,
+ 252, 252, 252, 252, 252, 252, 252, 252, 252, 252,
+
+ 252, 252, 252, 252, 252, 252, 252, 252, 252, 252,
+ 252, 252, 252, 252, 252, 252, 252, 252, 252, 252,
+ 252, 252, 252, 252, 252, 252, 252, 252, 252, 252,
+ 252, 252, 252, 252, 252, 252, 252, 252, 252, 252,
+ 252, 252, 252, 252, 252, 252, 252, 252, 252, 252,
+ 252, 252, 252, 252, 252, 252, 252, 252, 252, 252,
+ 252, 252, 252, 252, 252, 252, 252, 252, 252, 252,
+ 252, 252, 252, 252, 252, 252, 252, 252, 252, 252,
+ 252, 252, 252, 252, 252, 252, 252, 252, 252, 252,
+ 252, 252, 252, 252, 252, 252, 252, 252, 252, 252,
+
+ 252, 252, 252, 252, 252, 252, 252, 252, 252, 252,
+ 252, 252, 252, 252, 252, 252, 252, 252, 252, 252,
+ 252, 252, 252, 252, 252, 252, 252, 252, 252, 252,
+ 252, 252, 252, 252, 252, 252, 252, 252, 252, 252,
+ 252, 252, 252, 252, 252, 252, 252, 252, 252, 252,
+ 252, 252, 252, 252, 252, 252, 252, 252, 252, 252,
+ 252, 252, 252, 252, 252, 252, 252, 252, 252, 252,
+ 252, 252, 252, 252, 252, 252, 252, 252, 252, 306,
+ 305, 304, 303, 302, 301, 300, 299, 298, 297, 296,
+ 295, 294, 293, 292, 289, 288, 287, 286, 216, 285,
+
+ 284, 283, 282, 281, 276, 275, 274, 273, 272, 271,
+ 270, 269, 268, 267, 266, 262, 259, 256, 249, 248,
+ 247, 246, 245, 244, 239, 238, 237, 236, 235, 234,
+ 233, 232, 231, 230, 229, 225, 222, 219, 216, 212,
+ 202, 201, 198, 191, 186, 185, 181, 162, 158, 147,
+ 146, 143, 136, 131, 130, 126, 112, 106, 102, 410,
+ 5, 410, 410, 410, 410, 410, 410, 410, 410, 410,
+ 410, 410, 410, 410, 410, 410, 410, 410, 410, 410,
+ 410, 410, 410, 410, 410, 410, 410, 410, 410, 410,
+ 410, 410, 410, 410, 410, 410, 410, 410, 410, 410,
+
+ 410, 410, 410, 410, 410, 410, 410, 410, 410, 410,
+ 410, 410, 410, 410, 410, 410, 410, 410, 410, 410,
+ 410, 410, 410, 410, 410, 410, 410, 410, 410, 410,
+ 410, 410, 410, 410, 410, 410, 410, 410, 410, 410,
+ 410, 410, 410, 410, 410, 410, 410, 410, 410, 410,
+ 410, 410, 410, 410, 410, 410, 410, 410, 410, 410,
+ 410, 410, 410, 410, 410, 410, 410, 410, 410, 410,
+ 410, 410, 410, 410, 410, 410, 410, 410, 410, 410,
+ 410, 410, 410, 410, 410, 410, 410, 410, 410, 410,
+ 410, 410, 410, 410, 410, 410, 410, 410, 410, 410,
+
+ 410, 410, 410, 410, 410, 410, 410, 410, 410, 410,
+ 410, 410, 410, 410, 410, 410, 410, 410, 410, 410,
+ 410, 410, 410, 410, 410, 410, 410, 410, 410, 410,
+ 410, 410, 410, 410, 410, 410, 410, 410, 410, 410,
+ 410, 410, 410, 410, 410, 410, 410, 410, 410, 410,
+ 410, 410, 410, 410, 410, 410, 410, 410, 410, 410,
+ 410, 410, 410, 410, 410, 410, 410, 410, 410, 410,
+ 410, 410, 410, 410, 410, 410, 410, 410, 410, 410,
+ 410, 410, 410, 410, 410, 410, 410, 410, 410, 410,
+ 410, 410, 410, 410, 410, 410, 410, 410, 410, 410,
+
+ 410, 410, 410, 410, 410, 410, 410, 410, 410, 410,
+ 410, 410, 410, 410, 410, 410, 410
+ } ;
+
+static yyconst flex_int16_t yy_chk[6018] =
+ { 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 1, 1,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 1, 1, 1, 0, 1, 1, 1, 1, 1,
+ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
+ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
+ 1, 1, 1, 0, 1, 1, 1, 1, 1, 1,
+ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
+ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
+ 1, 1, 1, 1, 1, 15, 1, 1, 1, 1,
+
+ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
+ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
+ 1, 1, 1, 1, 1, 1, 2, 2, 19, 14,
+ 409, 21, 22, 22, 22, 22, 22, 22, 22, 22,
+ 22, 22, 28, 28, 30, 30, 19, 21, 15, 2,
+ 2, 2, 14, 2, 2, 2, 2, 2, 2, 2,
+ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
+ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
+ 2, 406, 2, 2, 2, 2, 2, 2, 2, 2,
+ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
+
+ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
+ 2, 2, 2, 109, 2, 2, 2, 2, 2, 2,
+ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
+ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
+ 2, 2, 2, 2, 3, 3, 23, 44, 38, 404,
+ 25, 23, 25, 25, 25, 25, 25, 25, 25, 25,
+ 25, 25, 38, 44, 316, 23, 109, 3, 3, 3,
+ 316, 3, 3, 3, 3, 3, 3, 3, 3, 3,
+ 3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
+ 3, 3, 3, 3, 3, 3, 3, 3, 3, 174,
+
+ 3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
+ 3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
+ 3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
+ 3, 174, 3, 3, 3, 3, 3, 3, 3, 3,
+ 3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
+ 3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
+ 3, 3, 4, 4, 39, 42, 48, 47, 41, 49,
+ 49, 76, 76, 42, 39, 90, 41, 47, 78, 78,
+ 48, 403, 41, 90, 47, 4, 4, 4, 41, 4,
+ 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
+
+ 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
+ 4, 4, 4, 4, 4, 4, 4, 402, 4, 4,
+ 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
+ 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
+ 4, 4, 4, 4, 4, 4, 4, 4, 4, 11,
+ 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
+ 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
+ 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
+ 24, 51, 24, 24, 24, 24, 24, 24, 24, 24,
+ 24, 24, 59, 62, 63, 66, 67, 63, 86, 69,
+
+ 59, 87, 97, 97, 401, 99, 149, 11, 71, 66,
+ 149, 87, 86, 71, 67, 69, 62, 70, 70, 70,
+ 70, 70, 70, 70, 70, 70, 70, 71, 72, 92,
+ 72, 72, 72, 72, 72, 72, 72, 72, 72, 72,
+ 103, 105, 111, 213, 51, 92, 395, 63, 128, 128,
+ 59, 132, 132, 73, 24, 73, 73, 73, 73, 73,
+ 73, 73, 73, 73, 73, 89, 95, 96, 99, 148,
+ 134, 183, 183, 89, 134, 203, 95, 394, 148, 89,
+ 134, 96, 252, 95, 203, 89, 187, 187, 159, 161,
+ 189, 225, 225, 391, 189, 111, 159, 161, 103, 105,
+
+ 189, 213, 72, 80, 80, 80, 80, 80, 80, 80,
+ 80, 80, 80, 204, 252, 260, 261, 204, 261, 260,
+ 80, 80, 80, 80, 80, 80, 80, 80, 80, 80,
+ 80, 80, 80, 80, 80, 80, 80, 80, 80, 80,
+ 80, 80, 80, 80, 80, 80, 159, 161, 390, 270,
+ 80, 270, 80, 80, 80, 80, 80, 80, 80, 80,
+ 80, 80, 80, 80, 80, 80, 80, 80, 80, 80,
+ 80, 80, 80, 80, 80, 80, 80, 80, 117, 117,
+ 117, 117, 117, 117, 117, 117, 117, 117, 121, 121,
+ 121, 121, 121, 121, 121, 121, 121, 121, 122, 387,
+
+ 122, 122, 122, 122, 122, 122, 122, 122, 122, 122,
+ 123, 123, 123, 123, 123, 123, 123, 123, 123, 123,
+ 165, 167, 265, 165, 167, 386, 265, 123, 123, 123,
+ 123, 123, 123, 173, 173, 173, 173, 173, 173, 173,
+ 173, 173, 173, 176, 176, 176, 176, 176, 176, 176,
+ 176, 176, 176, 267, 266, 274, 278, 214, 266, 123,
+ 123, 123, 123, 123, 123, 326, 274, 326, 250, 251,
+ 278, 267, 251, 165, 167, 177, 250, 177, 177, 177,
+ 177, 177, 177, 177, 177, 177, 177, 178, 178, 178,
+ 178, 178, 178, 178, 178, 178, 178, 283, 279, 385,
+
+ 283, 263, 279, 275, 178, 178, 178, 178, 178, 178,
+ 214, 217, 217, 217, 217, 217, 217, 217, 217, 217,
+ 217, 263, 251, 275, 281, 285, 250, 320, 281, 384,
+ 383, 320, 285, 328, 262, 271, 178, 178, 178, 178,
+ 178, 178, 184, 184, 184, 184, 184, 184, 184, 184,
+ 184, 184, 262, 262, 271, 328, 382, 379, 382, 184,
+ 184, 184, 184, 184, 184, 184, 184, 184, 184, 184,
+ 184, 184, 184, 184, 184, 184, 184, 184, 184, 184,
+ 184, 184, 184, 184, 184, 372, 332, 371, 370, 184,
+ 332, 184, 184, 184, 184, 184, 184, 184, 184, 184,
+
+ 184, 184, 184, 184, 184, 184, 184, 184, 184, 184,
+ 184, 184, 184, 184, 184, 184, 184, 218, 218, 218,
+ 218, 218, 218, 218, 218, 218, 218, 368, 367, 380,
+ 366, 276, 317, 277, 218, 218, 218, 218, 218, 218,
+ 254, 254, 254, 254, 254, 254, 254, 254, 254, 254,
+ 276, 277, 317, 380, 284, 255, 255, 255, 255, 255,
+ 255, 255, 255, 255, 255, 284, 218, 218, 218, 218,
+ 218, 218, 255, 255, 255, 255, 255, 255, 311, 313,
+ 314, 315, 318, 321, 322, 325, 313, 353, 311, 315,
+ 354, 356, 364, 407, 321, 356, 354, 364, 407, 314,
+
+ 353, 318, 325, 322, 255, 255, 255, 255, 255, 255,
+ 259, 259, 259, 259, 259, 259, 259, 259, 259, 259,
+ 377, 392, 397, 365, 377, 392, 397, 259, 259, 259,
+ 259, 259, 259, 259, 259, 259, 259, 259, 259, 259,
+ 259, 259, 259, 259, 259, 259, 259, 259, 259, 259,
+ 259, 259, 259, 363, 357, 352, 351, 259, 350, 259,
+ 259, 259, 259, 259, 259, 259, 259, 259, 259, 259,
+ 259, 259, 259, 259, 259, 259, 259, 259, 259, 259,
+ 259, 259, 259, 259, 259, 330, 355, 358, 359, 360,
+ 361, 376, 381, 362, 378, 393, 359, 355, 358, 330,
+
+ 362, 396, 360, 361, 405, 348, 381, 346, 345, 344,
+ 343, 376, 393, 378, 396, 342, 340, 339, 405, 411,
+ 411, 411, 411, 411, 411, 411, 411, 411, 411, 411,
+ 411, 411, 411, 411, 411, 411, 411, 411, 411, 411,
+ 411, 411, 411, 411, 411, 411, 411, 411, 411, 411,
+ 411, 411, 411, 411, 411, 411, 411, 411, 411, 411,
+ 411, 411, 411, 411, 411, 411, 411, 411, 411, 411,
+ 411, 411, 411, 411, 411, 411, 411, 411, 411, 411,
+ 411, 411, 411, 411, 411, 411, 411, 411, 411, 411,
+ 411, 411, 411, 411, 411, 411, 411, 411, 411, 411,
+
+ 411, 411, 411, 411, 411, 411, 411, 411, 411, 411,
+ 411, 411, 411, 411, 411, 411, 411, 411, 411, 411,
+ 411, 411, 411, 411, 411, 411, 411, 411, 411, 411,
+ 411, 411, 411, 411, 411, 411, 411, 411, 411, 411,
+ 411, 411, 411, 411, 411, 411, 411, 411, 411, 411,
+ 411, 411, 411, 411, 411, 411, 411, 411, 411, 411,
+ 411, 411, 411, 411, 411, 411, 411, 411, 411, 411,
+ 411, 411, 411, 411, 411, 411, 411, 411, 411, 411,
+ 411, 411, 411, 411, 411, 411, 411, 411, 411, 411,
+ 411, 411, 411, 411, 411, 411, 411, 411, 411, 411,
+
+ 411, 411, 411, 411, 411, 411, 411, 411, 411, 411,
+ 411, 411, 411, 411, 411, 411, 411, 411, 411, 411,
+ 411, 411, 411, 411, 411, 411, 411, 411, 411, 411,
+ 411, 411, 411, 411, 411, 411, 411, 411, 411, 411,
+ 411, 411, 411, 411, 411, 411, 411, 411, 411, 411,
+ 411, 411, 411, 411, 411, 411, 411, 411, 411, 411,
+ 411, 411, 411, 411, 411, 411, 411, 411, 411, 411,
+ 411, 411, 411, 411, 412, 412, 412, 412, 412, 412,
+ 412, 412, 412, 412, 412, 412, 412, 412, 412, 412,
+ 412, 412, 412, 412, 412, 412, 412, 412, 412, 412,
+
+ 412, 412, 412, 412, 412, 412, 412, 412, 412, 412,
+ 412, 412, 412, 412, 412, 412, 412, 412, 412, 412,
+ 412, 412, 412, 412, 412, 412, 412, 412, 412, 412,
+ 412, 412, 412, 412, 412, 412, 412, 412, 412, 412,
+ 412, 412, 412, 412, 412, 412, 412, 412, 412, 412,
+ 412, 412, 412, 412, 412, 412, 412, 412, 412, 412,
+ 412, 412, 412, 412, 412, 412, 412, 412, 412, 412,
+ 412, 412, 412, 412, 412, 412, 412, 412, 412, 412,
+ 412, 412, 412, 412, 412, 412, 412, 412, 412, 412,
+ 412, 412, 412, 412, 412, 412, 412, 412, 412, 412,
+
+ 412, 412, 412, 412, 412, 412, 412, 412, 412, 412,
+ 412, 412, 412, 412, 412, 412, 412, 412, 412, 412,
+ 412, 412, 412, 412, 412, 412, 412, 412, 412, 412,
+ 412, 412, 412, 412, 412, 412, 412, 412, 412, 412,
+ 412, 412, 412, 412, 412, 412, 412, 412, 412, 412,
+ 412, 412, 412, 412, 412, 412, 412, 412, 412, 412,
+ 412, 412, 412, 412, 412, 412, 412, 412, 412, 412,
+ 412, 412, 412, 412, 412, 412, 412, 412, 412, 412,
+ 412, 412, 412, 412, 412, 412, 412, 412, 412, 412,
+ 412, 412, 412, 412, 412, 412, 412, 412, 412, 412,
+
+ 412, 412, 412, 412, 412, 412, 412, 412, 412, 412,
+ 412, 412, 412, 412, 412, 412, 412, 412, 412, 412,
+ 412, 412, 412, 412, 412, 412, 412, 412, 412, 413,
+ 413, 413, 413, 413, 413, 413, 413, 413, 413, 413,
+ 413, 413, 413, 413, 413, 413, 413, 413, 413, 413,
+ 413, 413, 413, 413, 413, 413, 413, 413, 413, 413,
+ 413, 413, 413, 413, 413, 413, 413, 413, 413, 413,
+ 413, 413, 413, 413, 413, 413, 413, 413, 413, 413,
+ 413, 413, 413, 413, 413, 413, 413, 413, 413, 413,
+ 413, 413, 413, 413, 413, 413, 413, 413, 413, 413,
+
+ 413, 413, 413, 413, 413, 413, 413, 413, 413, 413,
+ 413, 413, 413, 413, 413, 413, 413, 413, 413, 413,
+ 413, 413, 413, 413, 413, 413, 413, 413, 413, 413,
+ 413, 413, 413, 413, 413, 413, 413, 413, 413, 413,
+ 413, 413, 413, 413, 413, 413, 413, 413, 413, 413,
+ 413, 413, 413, 413, 413, 413, 413, 413, 413, 413,
+ 413, 413, 413, 413, 413, 413, 413, 413, 413, 413,
+ 413, 413, 413, 413, 413, 413, 413, 413, 413, 413,
+ 413, 413, 413, 413, 413, 413, 413, 413, 413, 413,
+ 413, 413, 413, 413, 413, 413, 413, 413, 413, 413,
+
+ 413, 413, 413, 413, 413, 413, 413, 413, 413, 413,
+ 413, 413, 413, 413, 413, 413, 413, 413, 413, 413,
+ 413, 413, 413, 413, 413, 413, 413, 413, 413, 413,
+ 413, 413, 413, 413, 413, 413, 413, 413, 413, 413,
+ 413, 413, 413, 413, 413, 413, 413, 413, 413, 413,
+ 413, 413, 413, 413, 413, 413, 413, 413, 413, 413,
+ 413, 413, 413, 413, 413, 413, 413, 413, 413, 413,
+ 413, 413, 413, 413, 413, 413, 413, 413, 413, 413,
+ 413, 413, 413, 413, 414, 414, 414, 414, 414, 414,
+ 414, 414, 414, 414, 414, 414, 414, 414, 414, 414,
+
+ 414, 414, 414, 414, 414, 414, 414, 414, 414, 414,
+ 414, 414, 414, 414, 414, 414, 414, 414, 414, 414,
+ 414, 414, 414, 414, 414, 414, 414, 414, 414, 414,
+ 414, 414, 414, 414, 414, 414, 414, 414, 414, 414,
+ 414, 414, 414, 414, 414, 414, 414, 414, 414, 414,
+ 414, 414, 414, 414, 414, 414, 414, 414, 414, 414,
+ 414, 414, 414, 414, 414, 414, 414, 414, 414, 414,
+ 414, 414, 414, 414, 414, 414, 414, 414, 414, 414,
+ 414, 414, 414, 414, 414, 414, 414, 414, 414, 414,
+ 414, 414, 414, 414, 414, 414, 414, 414, 414, 414,
+
+ 414, 414, 414, 414, 414, 414, 414, 414, 414, 414,
+ 414, 414, 414, 414, 414, 414, 414, 414, 414, 414,
+ 414, 414, 414, 414, 414, 414, 414, 414, 414, 414,
+ 414, 414, 414, 414, 414, 414, 414, 414, 414, 414,
+ 414, 414, 414, 414, 414, 414, 414, 414, 414, 414,
+ 414, 414, 414, 414, 414, 414, 414, 414, 414, 414,
+ 414, 414, 414, 414, 414, 414, 414, 414, 414, 414,
+ 414, 414, 414, 414, 414, 414, 414, 414, 414, 414,
+ 414, 414, 414, 414, 414, 414, 414, 414, 414, 414,
+ 414, 414, 414, 414, 414, 414, 414, 414, 414, 414,
+
+ 414, 414, 414, 414, 414, 414, 414, 414, 414, 414,
+ 414, 414, 414, 414, 414, 414, 414, 414, 414, 414,
+ 414, 414, 414, 414, 414, 414, 414, 414, 414, 414,
+ 414, 414, 414, 414, 414, 414, 414, 414, 414, 415,
+ 415, 415, 415, 415, 415, 415, 415, 415, 415, 338,
+ 337, 333, 331, 329, 327, 324, 415, 415, 415, 415,
+ 415, 415, 415, 415, 415, 415, 415, 415, 415, 415,
+ 415, 415, 415, 415, 415, 415, 415, 415, 415, 415,
+ 415, 415, 323, 319, 312, 308, 415, 306, 415, 415,
+ 415, 415, 415, 415, 415, 415, 415, 415, 415, 415,
+
+ 415, 415, 415, 415, 415, 415, 415, 415, 415, 415,
+ 415, 415, 415, 415, 416, 416, 416, 416, 416, 416,
+ 416, 416, 416, 416, 416, 416, 416, 416, 416, 416,
+ 416, 416, 416, 416, 416, 416, 416, 416, 416, 416,
+ 416, 416, 416, 416, 416, 416, 416, 416, 416, 416,
+ 416, 416, 416, 416, 416, 304, 416, 416, 416, 416,
+ 416, 416, 416, 416, 416, 416, 416, 416, 416, 416,
+ 416, 416, 416, 416, 416, 416, 416, 416, 416, 416,
+ 416, 416, 416, 416, 416, 416, 416, 416, 416, 416,
+ 416, 416, 416, 416, 416, 416, 416, 416, 416, 416,
+
+ 416, 416, 416, 416, 416, 416, 416, 416, 416, 416,
+ 416, 416, 416, 416, 416, 416, 416, 416, 416, 416,
+ 416, 416, 416, 416, 416, 416, 416, 416, 416, 416,
+ 416, 416, 416, 416, 416, 416, 416, 416, 416, 416,
+ 416, 416, 416, 416, 416, 416, 416, 416, 416, 416,
+ 416, 416, 416, 416, 416, 416, 416, 416, 416, 416,
+ 416, 416, 416, 416, 416, 416, 416, 416, 416, 416,
+ 416, 416, 416, 416, 416, 416, 416, 416, 416, 416,
+ 416, 416, 416, 416, 416, 416, 416, 416, 416, 416,
+ 416, 416, 416, 416, 416, 416, 416, 416, 416, 416,
+
+ 416, 416, 416, 416, 416, 416, 416, 416, 416, 416,
+ 416, 416, 416, 416, 416, 416, 416, 416, 416, 416,
+ 416, 416, 416, 416, 416, 416, 416, 416, 416, 416,
+ 416, 416, 416, 416, 416, 416, 416, 416, 416, 416,
+ 416, 416, 416, 416, 416, 416, 416, 416, 416, 416,
+ 416, 416, 416, 416, 416, 416, 416, 416, 416, 416,
+ 416, 416, 416, 416, 416, 416, 416, 416, 416, 417,
+ 417, 417, 417, 417, 417, 417, 417, 417, 417, 417,
+ 417, 417, 417, 417, 417, 417, 417, 417, 417, 417,
+ 417, 417, 417, 417, 417, 417, 417, 417, 417, 417,
+
+ 417, 417, 417, 417, 417, 417, 417, 417, 417, 417,
+ 417, 417, 417, 417, 417, 417, 417, 417, 417, 417,
+ 417, 417, 417, 417, 417, 417, 417, 417, 417, 417,
+ 417, 417, 417, 417, 417, 417, 417, 417, 417, 417,
+ 417, 417, 417, 417, 417, 417, 417, 417, 417, 417,
+ 417, 417, 417, 417, 417, 417, 417, 417, 417, 417,
+ 417, 417, 417, 417, 417, 417, 417, 417, 417, 417,
+ 417, 417, 417, 417, 417, 417, 417, 417, 417, 417,
+ 417, 417, 417, 417, 417, 417, 417, 417, 417, 417,
+ 417, 417, 417, 417, 417, 417, 417, 417, 417, 417,
+
+ 417, 417, 417, 417, 417, 417, 417, 417, 417, 417,
+ 417, 417, 417, 417, 417, 417, 417, 417, 417, 417,
+ 417, 417, 417, 417, 417, 417, 417, 417, 417, 417,
+ 417, 417, 417, 417, 417, 417, 417, 417, 417, 417,
+ 417, 417, 417, 417, 417, 417, 417, 417, 417, 417,
+ 417, 417, 417, 417, 417, 417, 417, 417, 417, 417,
+ 417, 417, 417, 417, 417, 417, 417, 417, 417, 417,
+ 417, 417, 417, 417, 417, 417, 417, 417, 417, 417,
+ 417, 417, 417, 417, 417, 417, 417, 417, 417, 417,
+ 417, 417, 417, 417, 417, 417, 417, 417, 417, 417,
+
+ 417, 417, 417, 417, 417, 417, 417, 417, 417, 417,
+ 417, 417, 417, 417, 417, 417, 417, 417, 417, 417,
+ 417, 417, 417, 417, 418, 418, 418, 418, 418, 418,
+ 418, 418, 418, 418, 418, 418, 418, 418, 418, 418,
+ 418, 418, 418, 418, 418, 418, 418, 418, 418, 418,
+ 418, 418, 418, 418, 418, 418, 418, 418, 418, 418,
+ 418, 418, 418, 418, 418, 418, 418, 418, 418, 418,
+ 418, 418, 418, 418, 418, 418, 418, 418, 418, 418,
+ 418, 418, 418, 418, 418, 418, 418, 418, 418, 418,
+ 418, 418, 418, 418, 418, 418, 418, 418, 418, 418,
+
+ 418, 418, 418, 418, 418, 418, 418, 418, 418, 418,
+ 418, 418, 418, 418, 418, 418, 418, 418, 418, 418,
+ 418, 418, 418, 418, 418, 418, 418, 418, 418, 418,
+ 418, 418, 418, 418, 418, 418, 418, 418, 418, 418,
+ 418, 418, 418, 418, 418, 418, 418, 418, 418, 418,
+ 418, 418, 418, 418, 418, 418, 418, 418, 418, 418,
+ 418, 418, 418, 418, 418, 418, 418, 418, 418, 418,
+ 418, 418, 418, 418, 418, 418, 418, 418, 418, 418,
+ 418, 418, 418, 418, 418, 418, 418, 418, 418, 418,
+ 418, 418, 418, 418, 418, 418, 418, 418, 418, 418,
+
+ 418, 418, 418, 418, 418, 418, 418, 418, 418, 418,
+ 418, 418, 418, 418, 418, 418, 418, 418, 418, 418,
+ 418, 418, 418, 418, 418, 418, 418, 418, 418, 418,
+ 418, 418, 418, 418, 418, 418, 418, 418, 418, 418,
+ 418, 418, 418, 418, 418, 418, 418, 418, 418, 418,
+ 418, 418, 418, 418, 418, 418, 418, 418, 418, 418,
+ 418, 418, 418, 418, 418, 418, 418, 418, 418, 418,
+ 418, 418, 418, 418, 418, 418, 418, 418, 418, 419,
+ 419, 419, 419, 419, 419, 419, 419, 419, 419, 419,
+ 419, 419, 419, 419, 419, 419, 419, 419, 419, 419,
+
+ 419, 419, 419, 419, 419, 419, 419, 419, 419, 419,
+ 419, 419, 419, 419, 419, 419, 419, 419, 419, 419,
+ 419, 419, 419, 419, 419, 419, 419, 419, 419, 419,
+ 419, 419, 419, 419, 419, 419, 419, 419, 419, 419,
+ 419, 419, 419, 419, 419, 419, 419, 419, 419, 419,
+ 419, 419, 419, 419, 419, 419, 419, 419, 419, 419,
+ 419, 419, 419, 419, 419, 419, 419, 419, 419, 419,
+ 419, 419, 419, 419, 419, 419, 419, 419, 419, 419,
+ 419, 419, 419, 419, 419, 419, 419, 419, 419, 419,
+ 419, 419, 419, 419, 419, 419, 419, 419, 419, 419,
+
+ 419, 419, 419, 419, 419, 419, 419, 419, 419, 419,
+ 419, 419, 419, 419, 419, 419, 419, 419, 419, 419,
+ 419, 419, 419, 419, 419, 419, 419, 419, 419, 419,
+ 419, 419, 419, 419, 419, 419, 419, 419, 419, 419,
+ 419, 419, 419, 419, 419, 419, 419, 419, 419, 419,
+ 419, 419, 419, 419, 419, 419, 419, 419, 419, 419,
+ 419, 419, 419, 419, 419, 419, 419, 419, 419, 419,
+ 419, 419, 419, 419, 419, 419, 419, 419, 419, 419,
+ 419, 419, 419, 419, 419, 419, 419, 419, 419, 419,
+ 419, 419, 419, 419, 419, 419, 419, 419, 419, 419,
+
+ 419, 419, 419, 419, 419, 419, 419, 419, 419, 419,
+ 419, 419, 419, 419, 419, 419, 419, 419, 419, 419,
+ 419, 419, 419, 419, 419, 419, 419, 419, 419, 419,
+ 419, 419, 419, 419, 420, 420, 420, 420, 420, 420,
+ 420, 420, 420, 420, 302, 301, 299, 298, 297, 296,
+ 294, 420, 420, 420, 420, 420, 420, 420, 420, 420,
+ 420, 420, 420, 420, 420, 420, 420, 420, 420, 420,
+ 420, 420, 420, 420, 420, 420, 420, 293, 292, 291,
+ 290, 420, 289, 420, 420, 420, 420, 420, 420, 420,
+ 420, 420, 420, 420, 420, 420, 420, 420, 420, 420,
+
+ 420, 420, 420, 420, 420, 420, 420, 420, 420, 421,
+ 421, 421, 421, 421, 421, 421, 421, 421, 421, 421,
+ 421, 421, 421, 421, 421, 421, 421, 421, 421, 421,
+ 421, 421, 421, 421, 421, 421, 421, 421, 421, 421,
+ 421, 421, 421, 421, 421, 421, 421, 421, 421, 421,
+ 421, 421, 421, 421, 421, 421, 421, 421, 421, 421,
+ 421, 421, 421, 421, 421, 421, 421, 421, 421, 421,
+ 421, 421, 421, 421, 421, 421, 421, 421, 421, 421,
+ 421, 421, 421, 421, 421, 421, 421, 421, 421, 421,
+ 421, 421, 421, 421, 421, 421, 421, 421, 421, 421,
+
+ 421, 421, 421, 421, 421, 421, 421, 421, 421, 421,
+ 421, 421, 421, 421, 421, 421, 421, 421, 421, 421,
+ 421, 421, 421, 421, 421, 421, 421, 421, 421, 421,
+ 421, 421, 421, 421, 421, 421, 421, 421, 421, 421,
+ 421, 421, 421, 421, 421, 421, 421, 421, 421, 421,
+ 421, 421, 421, 421, 421, 421, 421, 421, 421, 421,
+ 421, 421, 421, 421, 421, 421, 421, 421, 421, 421,
+ 421, 421, 421, 421, 421, 421, 421, 421, 421, 421,
+ 421, 421, 421, 421, 421, 421, 421, 421, 421, 421,
+ 421, 421, 421, 421, 421, 421, 421, 421, 421, 421,
+
+ 421, 421, 421, 421, 421, 421, 421, 421, 421, 421,
+ 421, 421, 421, 421, 421, 421, 421, 421, 421, 421,
+ 421, 421, 421, 421, 421, 421, 421, 421, 421, 421,
+ 421, 421, 421, 421, 421, 421, 421, 421, 421, 421,
+ 421, 421, 421, 421, 421, 421, 421, 421, 421, 421,
+ 421, 421, 421, 421, 421, 421, 421, 421, 421, 421,
+ 421, 421, 421, 421, 422, 422, 422, 422, 422, 422,
+ 422, 422, 422, 422, 422, 422, 422, 422, 422, 422,
+ 422, 422, 422, 422, 422, 422, 422, 422, 422, 422,
+ 422, 422, 422, 422, 422, 422, 422, 422, 422, 422,
+
+ 422, 422, 422, 422, 422, 422, 422, 422, 422, 422,
+ 422, 422, 422, 422, 422, 422, 422, 422, 422, 422,
+ 422, 422, 422, 422, 422, 422, 422, 422, 422, 422,
+ 422, 422, 422, 422, 422, 422, 422, 422, 422, 422,
+ 422, 422, 422, 422, 422, 422, 422, 422, 422, 422,
+ 422, 422, 422, 422, 422, 422, 422, 422, 422, 422,
+ 422, 422, 422, 422, 422, 422, 422, 422, 422, 422,
+ 422, 422, 422, 422, 422, 422, 422, 422, 422, 422,
+ 422, 422, 422, 422, 422, 422, 422, 422, 422, 422,
+ 422, 422, 422, 422, 422, 422, 422, 422, 422, 422,
+
+ 422, 422, 422, 422, 422, 422, 422, 422, 422, 422,
+ 422, 422, 422, 422, 422, 422, 422, 422, 422, 422,
+ 422, 422, 422, 422, 422, 422, 422, 422, 422, 422,
+ 422, 422, 422, 422, 422, 422, 422, 422, 422, 422,
+ 422, 422, 422, 422, 422, 422, 422, 422, 422, 422,
+ 422, 422, 422, 422, 422, 422, 422, 422, 422, 422,
+ 422, 422, 422, 422, 422, 422, 422, 422, 422, 422,
+ 422, 422, 422, 422, 422, 422, 422, 422, 422, 422,
+ 422, 422, 422, 422, 422, 422, 422, 422, 422, 422,
+ 422, 422, 422, 422, 422, 422, 422, 422, 422, 422,
+
+ 422, 422, 422, 422, 422, 422, 422, 422, 422, 422,
+ 422, 422, 422, 422, 422, 422, 422, 422, 422, 423,
+ 423, 423, 423, 423, 423, 423, 423, 423, 423, 423,
+ 423, 423, 423, 423, 423, 423, 423, 423, 423, 423,
+ 423, 423, 423, 423, 423, 423, 423, 423, 423, 423,
+ 423, 423, 423, 423, 423, 423, 423, 423, 423, 423,
+ 423, 423, 423, 423, 423, 423, 423, 423, 423, 423,
+ 423, 423, 423, 423, 423, 423, 423, 423, 423, 423,
+ 423, 423, 423, 423, 423, 423, 423, 423, 423, 423,
+ 423, 423, 423, 423, 423, 423, 423, 423, 423, 423,
+
+ 423, 423, 423, 423, 423, 423, 423, 423, 423, 423,
+ 423, 423, 423, 423, 423, 423, 423, 423, 423, 423,
+ 423, 423, 423, 423, 423, 423, 423, 423, 423, 423,
+ 423, 423, 423, 423, 423, 423, 423, 423, 423, 423,
+ 423, 423, 423, 423, 423, 423, 423, 423, 423, 423,
+ 423, 423, 423, 423, 423, 423, 423, 423, 423, 423,
+ 423, 423, 423, 423, 423, 423, 423, 423, 423, 423,
+ 423, 423, 423, 423, 423, 423, 423, 423, 423, 423,
+ 423, 423, 423, 423, 423, 423, 423, 423, 423, 423,
+ 423, 423, 423, 423, 423, 423, 423, 423, 423, 423,
+
+ 423, 423, 423, 423, 423, 423, 423, 423, 423, 423,
+ 423, 423, 423, 423, 423, 423, 423, 423, 423, 423,
+ 423, 423, 423, 423, 423, 423, 423, 423, 423, 423,
+ 423, 423, 423, 423, 423, 423, 423, 423, 423, 423,
+ 423, 423, 423, 423, 423, 423, 423, 423, 423, 423,
+ 423, 423, 423, 423, 423, 423, 423, 423, 423, 423,
+ 423, 423, 423, 423, 423, 423, 423, 423, 423, 423,
+ 423, 423, 423, 423, 424, 424, 424, 424, 424, 424,
+ 424, 424, 424, 424, 424, 424, 424, 424, 424, 424,
+ 424, 424, 424, 424, 424, 424, 424, 424, 424, 424,
+
+ 424, 424, 424, 424, 424, 424, 424, 424, 424, 424,
+ 424, 424, 424, 424, 424, 424, 424, 424, 424, 424,
+ 424, 424, 424, 424, 424, 424, 424, 424, 424, 424,
+ 424, 424, 424, 424, 424, 424, 424, 424, 424, 424,
+ 424, 424, 424, 424, 424, 424, 424, 424, 424, 424,
+ 424, 424, 424, 424, 424, 424, 424, 424, 424, 424,
+ 424, 424, 424, 424, 424, 424, 424, 424, 424, 424,
+ 424, 424, 424, 424, 424, 424, 424, 424, 424, 424,
+ 424, 424, 424, 424, 424, 424, 424, 424, 424, 424,
+ 424, 424, 424, 424, 424, 424, 424, 424, 424, 424,
+
+ 424, 424, 424, 424, 424, 424, 424, 424, 424, 424,
+ 424, 424, 424, 424, 424, 424, 424, 424, 424, 424,
+ 424, 424, 424, 424, 424, 424, 424, 424, 424, 424,
+ 424, 424, 424, 424, 424, 424, 424, 424, 424, 424,
+ 424, 424, 424, 424, 424, 424, 424, 424, 424, 424,
+ 424, 424, 424, 424, 424, 424, 424, 424, 424, 424,
+ 424, 424, 424, 424, 424, 424, 424, 424, 424, 424,
+ 424, 424, 424, 424, 424, 424, 424, 424, 424, 424,
+ 424, 424, 424, 424, 424, 424, 424, 424, 424, 424,
+ 424, 424, 424, 424, 424, 424, 424, 424, 424, 424,
+
+ 424, 424, 424, 424, 424, 424, 424, 424, 424, 424,
+ 424, 424, 424, 424, 424, 424, 424, 424, 424, 424,
+ 424, 424, 424, 424, 424, 424, 424, 424, 424, 425,
+ 425, 425, 425, 425, 425, 425, 425, 425, 425, 425,
+ 425, 425, 425, 425, 425, 425, 425, 425, 425, 425,
+ 425, 425, 425, 425, 425, 425, 425, 425, 425, 425,
+ 425, 425, 425, 425, 425, 425, 425, 425, 425, 425,
+ 425, 425, 425, 425, 425, 425, 425, 425, 425, 425,
+ 425, 425, 425, 425, 425, 425, 425, 425, 425, 425,
+ 425, 425, 425, 425, 425, 425, 425, 425, 425, 425,
+
+ 425, 425, 425, 425, 425, 425, 425, 425, 425, 425,
+ 425, 425, 425, 425, 425, 425, 425, 425, 425, 425,
+ 425, 425, 425, 425, 425, 425, 425, 425, 425, 425,
+ 425, 425, 425, 425, 425, 425, 425, 425, 425, 425,
+ 425, 425, 425, 425, 425, 425, 425, 425, 425, 425,
+ 425, 425, 425, 425, 425, 425, 425, 425, 425, 425,
+ 425, 425, 425, 425, 425, 425, 425, 425, 425, 425,
+ 425, 425, 425, 425, 425, 425, 425, 425, 425, 425,
+ 425, 425, 425, 425, 425, 425, 425, 425, 425, 425,
+ 425, 425, 425, 425, 425, 425, 425, 425, 425, 425,
+
+ 425, 425, 425, 425, 425, 425, 425, 425, 425, 425,
+ 425, 425, 425, 425, 425, 425, 425, 425, 425, 425,
+ 425, 425, 425, 425, 425, 425, 425, 425, 425, 425,
+ 425, 425, 425, 425, 425, 425, 425, 425, 425, 425,
+ 425, 425, 425, 425, 425, 425, 425, 425, 425, 425,
+ 425, 425, 425, 425, 425, 425, 425, 425, 425, 425,
+ 425, 425, 425, 425, 425, 425, 425, 425, 425, 425,
+ 425, 425, 425, 425, 425, 425, 425, 425, 425, 425,
+ 425, 425, 425, 425, 426, 426, 426, 426, 426, 426,
+ 426, 426, 426, 426, 426, 426, 426, 426, 426, 426,
+
+ 426, 426, 426, 426, 426, 426, 426, 426, 426, 426,
+ 426, 426, 426, 426, 426, 426, 426, 426, 426, 426,
+ 426, 426, 426, 426, 426, 426, 426, 426, 426, 426,
+ 426, 426, 426, 426, 426, 426, 426, 426, 426, 426,
+ 426, 426, 426, 426, 426, 426, 426, 426, 426, 426,
+ 426, 426, 426, 426, 426, 426, 426, 426, 426, 426,
+ 426, 426, 426, 426, 426, 426, 426, 426, 426, 426,
+ 426, 426, 426, 426, 426, 426, 426, 426, 426, 426,
+ 426, 426, 426, 426, 426, 426, 426, 426, 426, 426,
+ 426, 426, 426, 426, 426, 426, 426, 426, 426, 426,
+
+ 426, 426, 426, 426, 426, 426, 426, 426, 426, 426,
+ 426, 426, 426, 426, 426, 426, 426, 426, 426, 426,
+ 426, 426, 426, 426, 426, 426, 426, 426, 426, 426,
+ 426, 426, 426, 426, 426, 426, 426, 426, 426, 426,
+ 426, 426, 426, 426, 426, 426, 426, 426, 426, 426,
+ 426, 426, 426, 426, 426, 426, 426, 426, 426, 426,
+ 426, 426, 426, 426, 426, 426, 426, 426, 426, 426,
+ 426, 426, 426, 426, 426, 426, 426, 426, 426, 426,
+ 426, 426, 426, 426, 426, 426, 426, 426, 426, 426,
+ 426, 426, 426, 426, 426, 426, 426, 426, 426, 426,
+
+ 426, 426, 426, 426, 426, 426, 426, 426, 426, 426,
+ 426, 426, 426, 426, 426, 426, 426, 426, 426, 426,
+ 426, 426, 426, 426, 426, 426, 426, 426, 426, 426,
+ 426, 426, 426, 426, 426, 426, 426, 426, 426, 427,
+ 427, 427, 427, 427, 427, 427, 427, 427, 427, 287,
+ 282, 280, 273, 272, 269, 268, 427, 427, 427, 427,
+ 427, 427, 427, 427, 427, 427, 427, 427, 427, 427,
+ 427, 427, 427, 427, 427, 427, 427, 427, 427, 427,
+ 427, 427, 264, 258, 248, 247, 427, 246, 427, 427,
+ 427, 427, 427, 427, 427, 427, 427, 427, 427, 427,
+
+ 427, 427, 427, 427, 427, 427, 427, 427, 427, 427,
+ 427, 427, 427, 427, 428, 428, 428, 428, 428, 428,
+ 428, 428, 428, 428, 428, 428, 428, 428, 428, 428,
+ 428, 428, 428, 428, 428, 428, 428, 428, 428, 428,
+ 428, 428, 428, 428, 428, 428, 428, 428, 428, 428,
+ 428, 428, 428, 428, 428, 428, 428, 428, 428, 428,
+ 428, 428, 428, 428, 428, 428, 428, 428, 428, 428,
+ 428, 428, 428, 428, 428, 428, 428, 428, 428, 428,
+ 428, 428, 428, 428, 428, 428, 428, 428, 428, 428,
+ 428, 428, 428, 428, 428, 428, 428, 428, 428, 428,
+
+ 428, 428, 428, 428, 428, 428, 428, 428, 428, 428,
+ 428, 428, 428, 428, 428, 428, 428, 428, 428, 428,
+ 428, 428, 428, 428, 428, 428, 428, 428, 428, 428,
+ 428, 428, 428, 428, 428, 428, 428, 428, 428, 428,
+ 428, 428, 428, 428, 428, 428, 428, 428, 428, 428,
+ 428, 428, 428, 428, 428, 428, 428, 428, 428, 428,
+ 428, 428, 428, 428, 428, 428, 428, 428, 428, 428,
+ 428, 428, 428, 428, 428, 428, 428, 428, 428, 428,
+ 428, 428, 428, 428, 428, 428, 428, 428, 428, 428,
+ 428, 428, 428, 428, 428, 428, 428, 428, 428, 428,
+
+ 428, 428, 428, 428, 428, 428, 428, 428, 428, 428,
+ 428, 428, 428, 428, 428, 428, 428, 428, 428, 428,
+ 428, 428, 428, 428, 428, 428, 428, 428, 428, 428,
+ 428, 428, 428, 428, 428, 428, 428, 428, 428, 428,
+ 428, 428, 428, 428, 428, 428, 428, 428, 428, 428,
+ 428, 428, 428, 428, 428, 428, 428, 428, 428, 428,
+ 428, 428, 428, 428, 428, 428, 428, 428, 428, 429,
+ 429, 429, 429, 429, 429, 429, 429, 429, 429, 429,
+ 429, 429, 429, 429, 429, 429, 429, 429, 429, 429,
+ 429, 429, 429, 429, 429, 429, 429, 429, 429, 429,
+
+ 429, 429, 429, 429, 429, 429, 429, 429, 429, 429,
+ 429, 429, 429, 429, 429, 429, 429, 429, 429, 429,
+ 429, 429, 429, 429, 429, 429, 429, 429, 429, 429,
+ 429, 429, 429, 429, 429, 429, 429, 429, 429, 429,
+ 429, 429, 429, 429, 429, 429, 429, 429, 429, 429,
+ 429, 429, 429, 429, 429, 429, 429, 429, 429, 429,
+ 429, 429, 429, 429, 429, 429, 429, 429, 429, 429,
+ 429, 429, 429, 429, 429, 429, 429, 429, 429, 429,
+ 429, 429, 429, 429, 429, 429, 429, 429, 429, 429,
+ 429, 429, 429, 429, 429, 429, 429, 429, 429, 429,
+
+ 429, 429, 429, 429, 429, 429, 429, 429, 429, 429,
+ 429, 429, 429, 429, 429, 429, 429, 429, 429, 429,
+ 429, 429, 429, 429, 429, 429, 429, 429, 429, 429,
+ 429, 429, 429, 429, 429, 429, 429, 429, 429, 429,
+ 429, 429, 429, 429, 429, 429, 429, 429, 429, 429,
+ 429, 429, 429, 429, 429, 429, 429, 429, 429, 429,
+ 429, 429, 429, 429, 429, 429, 429, 429, 429, 429,
+ 429, 429, 429, 429, 429, 429, 429, 429, 429, 429,
+ 429, 429, 429, 429, 429, 429, 429, 429, 429, 429,
+ 429, 429, 429, 429, 429, 429, 429, 429, 429, 429,
+
+ 429, 429, 429, 429, 429, 429, 429, 429, 429, 429,
+ 429, 429, 429, 429, 429, 429, 429, 429, 429, 429,
+ 429, 429, 429, 429, 430, 430, 430, 430, 430, 430,
+ 430, 430, 430, 430, 430, 430, 430, 430, 430, 430,
+ 430, 430, 430, 430, 430, 430, 430, 430, 430, 430,
+ 430, 430, 430, 430, 430, 430, 430, 430, 430, 430,
+ 430, 430, 430, 430, 430, 430, 430, 430, 430, 430,
+ 430, 430, 430, 430, 430, 430, 430, 430, 430, 430,
+ 430, 430, 430, 430, 430, 430, 430, 430, 430, 430,
+ 430, 430, 430, 430, 430, 430, 430, 430, 430, 430,
+
+ 430, 430, 430, 430, 430, 430, 430, 430, 430, 430,
+ 430, 430, 430, 430, 430, 430, 430, 430, 430, 430,
+ 430, 430, 430, 430, 430, 430, 430, 430, 430, 430,
+ 430, 430, 430, 430, 430, 430, 430, 430, 430, 430,
+ 430, 430, 430, 430, 430, 430, 430, 430, 430, 430,
+ 430, 430, 430, 430, 430, 430, 430, 430, 430, 430,
+ 430, 430, 430, 430, 430, 430, 430, 430, 430, 430,
+ 430, 430, 430, 430, 430, 430, 430, 430, 430, 430,
+ 430, 430, 430, 430, 430, 430, 430, 430, 430, 430,
+ 430, 430, 430, 430, 430, 430, 430, 430, 430, 430,
+
+ 430, 430, 430, 430, 430, 430, 430, 430, 430, 430,
+ 430, 430, 430, 430, 430, 430, 430, 430, 430, 430,
+ 430, 430, 430, 430, 430, 430, 430, 430, 430, 430,
+ 430, 430, 430, 430, 430, 430, 430, 430, 430, 430,
+ 430, 430, 430, 430, 430, 430, 430, 430, 430, 430,
+ 430, 430, 430, 430, 430, 430, 430, 430, 430, 430,
+ 430, 430, 430, 430, 430, 430, 430, 430, 430, 430,
+ 430, 430, 430, 430, 430, 430, 430, 430, 430, 244,
+ 242, 241, 240, 239, 238, 237, 234, 233, 231, 230,
+ 229, 228, 227, 226, 224, 223, 222, 221, 215, 209,
+
+ 208, 207, 206, 205, 202, 201, 200, 199, 198, 197,
+ 195, 194, 193, 192, 191, 188, 186, 181, 158, 154,
+ 153, 152, 151, 150, 147, 146, 145, 144, 143, 142,
+ 140, 139, 138, 137, 136, 133, 131, 126, 119, 102,
+ 94, 93, 91, 88, 85, 84, 77, 61, 58, 46,
+ 45, 43, 40, 37, 36, 29, 18, 13, 10, 5,
+ 410, 410, 410, 410, 410, 410, 410, 410, 410, 410,
+ 410, 410, 410, 410, 410, 410, 410, 410, 410, 410,
+ 410, 410, 410, 410, 410, 410, 410, 410, 410, 410,
+ 410, 410, 410, 410, 410, 410, 410, 410, 410, 410,
+
+ 410, 410, 410, 410, 410, 410, 410, 410, 410, 410,
+ 410, 410, 410, 410, 410, 410, 410, 410, 410, 410,
+ 410, 410, 410, 410, 410, 410, 410, 410, 410, 410,
+ 410, 410, 410, 410, 410, 410, 410, 410, 410, 410,
+ 410, 410, 410, 410, 410, 410, 410, 410, 410, 410,
+ 410, 410, 410, 410, 410, 410, 410, 410, 410, 410,
+ 410, 410, 410, 410, 410, 410, 410, 410, 410, 410,
+ 410, 410, 410, 410, 410, 410, 410, 410, 410, 410,
+ 410, 410, 410, 410, 410, 410, 410, 410, 410, 410,
+ 410, 410, 410, 410, 410, 410, 410, 410, 410, 410,
+
+ 410, 410, 410, 410, 410, 410, 410, 410, 410, 410,
+ 410, 410, 410, 410, 410, 410, 410, 410, 410, 410,
+ 410, 410, 410, 410, 410, 410, 410, 410, 410, 410,
+ 410, 410, 410, 410, 410, 410, 410, 410, 410, 410,
+ 410, 410, 410, 410, 410, 410, 410, 410, 410, 410,
+ 410, 410, 410, 410, 410, 410, 410, 410, 410, 410,
+ 410, 410, 410, 410, 410, 410, 410, 410, 410, 410,
+ 410, 410, 410, 410, 410, 410, 410, 410, 410, 410,
+ 410, 410, 410, 410, 410, 410, 410, 410, 410, 410,
+ 410, 410, 410, 410, 410, 410, 410, 410, 410, 410,
+
+ 410, 410, 410, 410, 410, 410, 410, 410, 410, 410,
+ 410, 410, 410, 410, 410, 410, 410
+ } ;
+
+/* Table of booleans, true if rule could match eol. */
+static yyconst flex_int32_t yy_rule_can_match_eol[97] =
+ { 0,
+0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, };
+
+static yy_state_type yy_last_accepting_state;
+static char *yy_last_accepting_cpos;
+
+static yyconst yy_state_type yy_NUL_trans[410] =
+ { 0,
+ 6, 6, 54, 54, 0, 0, 0, 0, 0, 0,
+ 103, 0, 0, 0, 109, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 157, 157, 157, 157, 157, 159, 157,
+ 157, 157, 165, 157, 157, 0, 157, 157, 157, 157,
+ 157, 157, 157, 157, 157, 157, 157, 157, 157, 157,
+ 157, 157, 157, 157, 157, 157, 157, 157, 157, 157,
+ 157, 157, 157, 157, 157, 157, 157, 157, 157, 157,
+
+ 157, 0, 103, 0, 103, 0, 0, 0, 109, 0,
+ 109, 0, 0, 0, 0, 0, 0, 0, 215, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 157, 157, 159, 157,
+ 159, 157, 157, 157, 165, 157, 165, 0, 157, 157,
+ 157, 157, 157, 252, 157, 157, 157, 157, 157, 157,
+ 157, 157, 157, 157, 157, 157, 157, 157, 157, 157,
+ 157, 157, 157, 157, 157, 157, 157, 157, 157, 157,
+
+ 157, 157, 157, 157, 157, 157, 157, 157, 157, 157,
+ 157, 0, 103, 109, 215, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 157, 159,
+ 165, 252, 157, 157, 157, 157, 157, 157, 157, 157,
+ 157, 157, 157, 157, 157, 157, 157, 157, 157, 157,
+ 157, 157, 157, 157, 157, 157, 157, 157, 157, 157,
+ 157, 157, 157, 157, 157, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 157,
+ 157, 157, 157, 157, 157, 157, 157, 157, 157, 157,
+ 157, 157, 157, 157, 157, 157, 157, 157, 157, 157,
+ 157, 157, 157, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 157,
+ 157, 157, 157, 157, 157, 157, 157, 157, 157, 157,
+ 157, 157, 157, 157, 157, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 157, 157, 157, 157, 157,
+ 157, 157, 157, 157, 157, 0, 0, 0, 0, 0,
+ 0, 157, 157, 157, 157, 157, 157, 0, 0, 0,
+
+ 0, 157, 157, 157, 157, 0, 157, 0, 157
+ } ;
+
+extern int yy_flex_debug;
+int yy_flex_debug = 0;
+
+/* The intent behind this definition is that it'll catch
+ * any uses of REJECT which flex missed.
+ */
+#define REJECT reject_used_but_not_detected
+#define yymore() yymore_used_but_not_detected
+#define YY_MORE_ADJ 0
+#define YY_RESTORE_YY_MORE_OFFSET
+char *yytext;
+#line 1 "./js-parser/lex.l"
+#line 2 "./js-parser/lex.l"
+#include <stdio.h>
+#include "jstypes.h"
+#include "js-node.h"
+#include "js-parser-y-tab.h"
+#define YY_NO_INPUT 1
+
+#line 1958 "js-parser/lex.yy.c"
+
+#define INITIAL 0
+#define COMMENT 1
+
+#ifndef YY_NO_UNISTD_H
+/* Special case for "unistd.h", since it is non-ANSI. We include it way
+ * down here because we want the user's section 1 to have been scanned first.
+ * The user has a chance to override it with an option.
+ */
+#include <unistd.h>
+#endif
+
+#ifndef YY_EXTRA_TYPE
+#define YY_EXTRA_TYPE void *
+#endif
+
+static int yy_init_globals (void );
+
+/* Accessor methods to globals.
+ These are made visible to non-reentrant scanners for convenience. */
+
+int yylex_destroy (void );
+
+int yyget_debug (void );
+
+void yyset_debug (int debug_flag );
+
+YY_EXTRA_TYPE yyget_extra (void );
+
+void yyset_extra (YY_EXTRA_TYPE user_defined );
+
+FILE *yyget_in (void );
+
+void yyset_in (FILE * in_str );
+
+FILE *yyget_out (void );
+
+void yyset_out (FILE * out_str );
+
+int yyget_leng (void );
+
+char *yyget_text (void );
+
+int yyget_lineno (void );
+
+void yyset_lineno (int line_number );
+
+YYSTYPE * yyget_lval (void );
+
+void yyset_lval (YYSTYPE * yylval_param );
+
+/* Macros after this point can all be overridden by user definitions in
+ * section 1.
+ */
+
+#ifndef YY_SKIP_YYWRAP
+#ifdef __cplusplus
+extern "C" int yywrap (void );
+#else
+extern int yywrap (void );
+#endif
+#endif
+
+#ifndef yytext_ptr
+static void yy_flex_strncpy (char *,yyconst char *,int );
+#endif
+
+#ifdef YY_NEED_STRLEN
+static int yy_flex_strlen (yyconst char * );
+#endif
+
+#ifndef YY_NO_INPUT
+
+#ifdef __cplusplus
+static int yyinput (void );
+#else
+static int input (void );
+#endif
+
+#endif
+
+/* Amount of stuff to slurp up with each read. */
+#ifndef YY_READ_BUF_SIZE
+#ifdef __ia64__
+/* On IA-64, the buffer size is 16k, not 8k */
+#define YY_READ_BUF_SIZE 16384
+#else
+#define YY_READ_BUF_SIZE 8192
+#endif /* __ia64__ */
+#endif
+
+/* Copy whatever the last rule matched to the standard output. */
+#ifndef ECHO
+/* This used to be an fputs(), but since the string might contain NUL's,
+ * we now use fwrite().
+ */
+#define ECHO do { if (fwrite( yytext, yyleng, 1, yyout )) {} } while (0)
+#endif
+
+/* Gets input and stuffs it into "buf". number of characters read, or YY_NULL,
+ * is returned in "result".
+ */
+#ifndef YY_INPUT
+#define YY_INPUT(buf,result,max_size) \
+ errno=0; \
+ while ( (result = read( fileno(yyin), (char *) buf, max_size )) < 0 ) \
+ { \
+ if( errno != EINTR) \
+ { \
+ YY_FATAL_ERROR( "input in flex scanner failed" ); \
+ break; \
+ } \
+ errno=0; \
+ clearerr(yyin); \
+ }\
+\
+
+#endif
+
+/* No semi-colon after return; correct usage is to write "yyterminate();" -
+ * we don't want an extra ';' after the "return" because that will cause
+ * some compilers to complain about unreachable statements.
+ */
+#ifndef yyterminate
+#define yyterminate() return YY_NULL
+#endif
+
+/* Number of entries by which start-condition stack grows. */
+#ifndef YY_START_STACK_INCR
+#define YY_START_STACK_INCR 25
+#endif
+
+/* Report a fatal error. */
+#ifndef YY_FATAL_ERROR
+#define YY_FATAL_ERROR(msg) yy_fatal_error( msg )
+#endif
+
+/* end tables serialization structures and prototypes */
+
+/* Default declaration of generated scanner - a define so the user can
+ * easily add parameters.
+ */
+#ifndef YY_DECL
+#define YY_DECL_IS_OURS 1
+
+extern int yylex \
+ (YYSTYPE * yylval_param );
+
+#define YY_DECL int yylex \
+ (YYSTYPE * yylval_param )
+#endif /* !YY_DECL */
+
+/* Code executed at the beginning of each rule, after yytext and yyleng
+ * have been set up.
+ */
+#ifndef YY_USER_ACTION
+#define YY_USER_ACTION
+#endif
+
+/* Code executed at the end of each rule. */
+#ifndef YY_BREAK
+#define YY_BREAK break;
+#endif
+
+#define YY_RULE_SETUP \
+ YY_USER_ACTION
+
+/** The main scanner function which does all the work.
+ */
+YY_DECL
+{
+ register yy_state_type yy_current_state;
+ register char *yy_cp, *yy_bp;
+ register int yy_act;
+
+ YYSTYPE * yylval;
+
+#line 14 "./js-parser/lex.l"
+
+#line 2138 "js-parser/lex.yy.c"
+
+ yylval = yylval_param;
+
+ if ( !(yy_init) )
+ {
+ (yy_init) = 1;
+
+#ifdef YY_USER_INIT
+ YY_USER_INIT;
+#endif
+
+ if ( ! (yy_start) )
+ (yy_start) = 1; /* first start state */
+
+ if ( ! yyin )
+ yyin = stdin;
+
+ if ( ! yyout )
+ yyout = stdout;
+
+ if ( ! YY_CURRENT_BUFFER ) {
+ yyensure_buffer_stack ();
+ YY_CURRENT_BUFFER_LVALUE =
+ yy_create_buffer(yyin,YY_BUF_SIZE );
+ }
+
+ yy_load_buffer_state( );
+ }
+
+ while ( 1 ) /* loops until end-of-file is reached */
+ {
+ yy_cp = (yy_c_buf_p);
+
+ /* Support of yytext. */
+ *yy_cp = (yy_hold_char);
+
+ /* yy_bp points to the position in yy_ch_buf of the start of
+ * the current run.
+ */
+ yy_bp = yy_cp;
+
+ yy_current_state = (yy_start);
+yy_match:
+ do
+ {
+ register YY_CHAR yy_c = YY_SC_TO_UI(*yy_cp);
+ if ( yy_accept[yy_current_state] )
+ {
+ (yy_last_accepting_state) = yy_current_state;
+ (yy_last_accepting_cpos) = yy_cp;
+ }
+ while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )
+ {
+ yy_current_state = (int) yy_def[yy_current_state];
+ }
+ yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c];
+ ++yy_cp;
+ }
+ while ( yy_base[yy_current_state] != 5761 );
+
+yy_find_action:
+ yy_act = yy_accept[yy_current_state];
+ if ( yy_act == 0 )
+ { /* have to back up */
+ yy_cp = (yy_last_accepting_cpos);
+ yy_current_state = (yy_last_accepting_state);
+ yy_act = yy_accept[yy_current_state];
+ }
+
+ YY_DO_BEFORE_ACTION;
+
+ if ( yy_act != YY_END_OF_BUFFER && yy_rule_can_match_eol[yy_act] )
+ {
+ int yyl;
+ for ( yyl = 0; yyl < yyleng; ++yyl )
+ if ( yytext[yyl] == '\n' )
+
+ yylineno++;
+;
+ }
+
+do_action: /* This label is used only to access EOF actions. */
+
+ switch ( yy_act )
+ { /* beginning of action switch */
+ case 0: /* must back up */
+ /* undo the effects of YY_DO_BEFORE_ACTION */
+ *yy_cp = (yy_hold_char);
+ yy_cp = (yy_last_accepting_cpos);
+ yy_current_state = (yy_last_accepting_state);
+ goto yy_find_action;
+
+case 1:
+YY_RULE_SETUP
+#line 15 "./js-parser/lex.l"
+{BEGIN COMMENT;};
+ YY_BREAK
+case 2:
+/* rule 2 can match eol */
+YY_RULE_SETUP
+#line 16 "./js-parser/lex.l"
+;
+ YY_BREAK
+case 3:
+/* rule 3 can match eol */
+YY_RULE_SETUP
+#line 17 "./js-parser/lex.l"
+;
+ YY_BREAK
+case 4:
+YY_RULE_SETUP
+#line 18 "./js-parser/lex.l"
+{BEGIN 0; };
+ YY_BREAK
+case 5:
+YY_RULE_SETUP
+#line 19 "./js-parser/lex.l"
+return NULLTOKEN;
+ YY_BREAK
+case 6:
+YY_RULE_SETUP
+#line 20 "./js-parser/lex.l"
+return TRUETOKEN;
+ YY_BREAK
+case 7:
+YY_RULE_SETUP
+#line 21 "./js-parser/lex.l"
+return FALSETOKEN;
+ YY_BREAK
+case 8:
+YY_RULE_SETUP
+#line 23 "./js-parser/lex.l"
+return BREAK;
+ YY_BREAK
+case 9:
+YY_RULE_SETUP
+#line 24 "./js-parser/lex.l"
+return CASE;
+ YY_BREAK
+case 10:
+YY_RULE_SETUP
+#line 25 "./js-parser/lex.l"
+return CATCH;
+ YY_BREAK
+case 11:
+YY_RULE_SETUP
+#line 26 "./js-parser/lex.l"
+return CONSTTOKEN;
+ YY_BREAK
+case 12:
+YY_RULE_SETUP
+#line 27 "./js-parser/lex.l"
+return DEFAULT;
+ YY_BREAK
+case 13:
+YY_RULE_SETUP
+#line 28 "./js-parser/lex.l"
+return FINALLY;
+ YY_BREAK
+case 14:
+YY_RULE_SETUP
+#line 29 "./js-parser/lex.l"
+return FOR;
+ YY_BREAK
+case 15:
+YY_RULE_SETUP
+#line 30 "./js-parser/lex.l"
+return INSTANCEOF;
+ YY_BREAK
+case 16:
+YY_RULE_SETUP
+#line 31 "./js-parser/lex.l"
+return NEW;
+ YY_BREAK
+case 17:
+YY_RULE_SETUP
+#line 32 "./js-parser/lex.l"
+return VAR;
+ YY_BREAK
+case 18:
+YY_RULE_SETUP
+#line 33 "./js-parser/lex.l"
+return CONTINUE;
+ YY_BREAK
+case 19:
+YY_RULE_SETUP
+#line 34 "./js-parser/lex.l"
+return FUNCTION;
+ YY_BREAK
+case 20:
+YY_RULE_SETUP
+#line 35 "./js-parser/lex.l"
+return RETURN;
+ YY_BREAK
+case 21:
+YY_RULE_SETUP
+#line 36 "./js-parser/lex.l"
+return VOIDTOKEN;
+ YY_BREAK
+case 22:
+YY_RULE_SETUP
+#line 37 "./js-parser/lex.l"
+return DELETETOKEN;
+ YY_BREAK
+case 23:
+YY_RULE_SETUP
+#line 38 "./js-parser/lex.l"
+return IF;
+ YY_BREAK
+case 24:
+YY_RULE_SETUP
+#line 39 "./js-parser/lex.l"
+return THISTOKEN;
+ YY_BREAK
+case 25:
+YY_RULE_SETUP
+#line 40 "./js-parser/lex.l"
+return DO;
+ YY_BREAK
+case 26:
+YY_RULE_SETUP
+#line 41 "./js-parser/lex.l"
+return WHILE;
+ YY_BREAK
+case 27:
+YY_RULE_SETUP
+#line 42 "./js-parser/lex.l"
+return ELSE;
+ YY_BREAK
+case 28:
+YY_RULE_SETUP
+#line 43 "./js-parser/lex.l"
+return INTOKEN;
+ YY_BREAK
+case 29:
+YY_RULE_SETUP
+#line 44 "./js-parser/lex.l"
+return SWITCH;
+ YY_BREAK
+case 30:
+YY_RULE_SETUP
+#line 45 "./js-parser/lex.l"
+return THROW;
+ YY_BREAK
+case 31:
+YY_RULE_SETUP
+#line 46 "./js-parser/lex.l"
+return TRY;
+ YY_BREAK
+case 32:
+YY_RULE_SETUP
+#line 47 "./js-parser/lex.l"
+return TYPEOF;
+ YY_BREAK
+case 33:
+YY_RULE_SETUP
+#line 48 "./js-parser/lex.l"
+return WITH;
+ YY_BREAK
+case 34:
+YY_RULE_SETUP
+#line 49 "./js-parser/lex.l"
+return DEBUGGER;
+ YY_BREAK
+case 35:
+YY_RULE_SETUP
+#line 50 "./js-parser/lex.l"
+return STREQ;
+ YY_BREAK
+case 36:
+YY_RULE_SETUP
+#line 51 "./js-parser/lex.l"
+return STRNEQ;
+ YY_BREAK
+case 37:
+YY_RULE_SETUP
+#line 52 "./js-parser/lex.l"
+;
+ YY_BREAK
+case 38:
+YY_RULE_SETUP
+#line 53 "./js-parser/lex.l"
+return PLUSPLUS;
+ YY_BREAK
+case 39:
+YY_RULE_SETUP
+#line 54 "./js-parser/lex.l"
+return MINUSMINUS;
+ YY_BREAK
+case 40:
+YY_RULE_SETUP
+#line 55 "./js-parser/lex.l"
+return PLUSEQUAL;
+ YY_BREAK
+case 41:
+YY_RULE_SETUP
+#line 56 "./js-parser/lex.l"
+return MINUSEQUAL;
+ YY_BREAK
+case 42:
+YY_RULE_SETUP
+#line 57 "./js-parser/lex.l"
+return MULTEQUAL;
+ YY_BREAK
+case 43:
+YY_RULE_SETUP
+#line 58 "./js-parser/lex.l"
+return DIVEQUAL;
+ YY_BREAK
+case 44:
+YY_RULE_SETUP
+#line 59 "./js-parser/lex.l"
+return OPENBRACE;
+ YY_BREAK
+case 45:
+YY_RULE_SETUP
+#line 60 "./js-parser/lex.l"
+(*yylval).intValue = yylineno; return CLOSEBRACE;
+ YY_BREAK
+case 46:
+YY_RULE_SETUP
+#line 61 "./js-parser/lex.l"
+return EQEQ;
+ YY_BREAK
+case 47:
+YY_RULE_SETUP
+#line 62 "./js-parser/lex.l"
+return NE;
+ YY_BREAK
+case 48:
+YY_RULE_SETUP
+#line 63 "./js-parser/lex.l"
+return LE;
+ YY_BREAK
+case 49:
+YY_RULE_SETUP
+#line 64 "./js-parser/lex.l"
+return GE;
+ YY_BREAK
+case 50:
+YY_RULE_SETUP
+#line 65 "./js-parser/lex.l"
+return OR;
+ YY_BREAK
+case 51:
+YY_RULE_SETUP
+#line 66 "./js-parser/lex.l"
+return AND;
+ YY_BREAK
+case 52:
+YY_RULE_SETUP
+#line 67 "./js-parser/lex.l"
+return ANDEQUAL;
+ YY_BREAK
+case 53:
+YY_RULE_SETUP
+#line 68 "./js-parser/lex.l"
+return MODEQUAL;
+ YY_BREAK
+case 54:
+YY_RULE_SETUP
+#line 69 "./js-parser/lex.l"
+return XOREQUAL;
+ YY_BREAK
+case 55:
+YY_RULE_SETUP
+#line 70 "./js-parser/lex.l"
+return OREQUAL;
+ YY_BREAK
+case 56:
+YY_RULE_SETUP
+#line 71 "./js-parser/lex.l"
+return NUMBER;
+ YY_BREAK
+case 57:
+YY_RULE_SETUP
+#line 72 "./js-parser/lex.l"
+return NUMBER;
+ YY_BREAK
+case 58:
+YY_RULE_SETUP
+#line 73 "./js-parser/lex.l"
+return NUMBER;
+ YY_BREAK
+case 59:
+YY_RULE_SETUP
+#line 74 "./js-parser/lex.l"
+return NUMBER;
+ YY_BREAK
+case 60:
+YY_RULE_SETUP
+#line 75 "./js-parser/lex.l"
+(*yylval).name.iname=strdup (yytext); (*yylval).name.pos.end = yylineno; (*yylval).name.pos.begin = yylineno; return IDENT_IN;
+ YY_BREAK
+case 61:
+/* rule 61 can match eol */
+YY_RULE_SETUP
+#line 76 "./js-parser/lex.l"
+return STRING;
+ YY_BREAK
+case 62:
+/* rule 62 can match eol */
+YY_RULE_SETUP
+#line 77 "./js-parser/lex.l"
+return STRING;
+ YY_BREAK
+case 63:
+YY_RULE_SETUP
+#line 78 "./js-parser/lex.l"
+return LSHIFT;
+ YY_BREAK
+case 64:
+YY_RULE_SETUP
+#line 79 "./js-parser/lex.l"
+return RSHIFT;
+ YY_BREAK
+case 65:
+YY_RULE_SETUP
+#line 80 "./js-parser/lex.l"
+return URSHIFT;
+ YY_BREAK
+case 66:
+YY_RULE_SETUP
+#line 81 "./js-parser/lex.l"
+return RSHIFTEQUAL;
+ YY_BREAK
+case 67:
+YY_RULE_SETUP
+#line 82 "./js-parser/lex.l"
+return URSHIFTEQUAL;
+ YY_BREAK
+case 68:
+YY_RULE_SETUP
+#line 83 "./js-parser/lex.l"
+return '(';
+ YY_BREAK
+case 69:
+YY_RULE_SETUP
+#line 84 "./js-parser/lex.l"
+return ')';
+ YY_BREAK
+case 70:
+YY_RULE_SETUP
+#line 85 "./js-parser/lex.l"
+return '/';
+ YY_BREAK
+case 71:
+YY_RULE_SETUP
+#line 86 "./js-parser/lex.l"
+return '\\';
+ YY_BREAK
+case 72:
+YY_RULE_SETUP
+#line 87 "./js-parser/lex.l"
+return ':';
+ YY_BREAK
+case 73:
+YY_RULE_SETUP
+#line 88 "./js-parser/lex.l"
+return ',';
+ YY_BREAK
+case 74:
+YY_RULE_SETUP
+#line 89 "./js-parser/lex.l"
+return '[';
+ YY_BREAK
+case 75:
+YY_RULE_SETUP
+#line 90 "./js-parser/lex.l"
+return ']';
+ YY_BREAK
+case 76:
+YY_RULE_SETUP
+#line 91 "./js-parser/lex.l"
+return '.';
+ YY_BREAK
+case 77:
+YY_RULE_SETUP
+#line 92 "./js-parser/lex.l"
+return '+';
+ YY_BREAK
+case 78:
+YY_RULE_SETUP
+#line 93 "./js-parser/lex.l"
+return '-';
+ YY_BREAK
+case 79:
+YY_RULE_SETUP
+#line 94 "./js-parser/lex.l"
+return '~';
+ YY_BREAK
+case 80:
+YY_RULE_SETUP
+#line 95 "./js-parser/lex.l"
+return '!';
+ YY_BREAK
+case 81:
+YY_RULE_SETUP
+#line 96 "./js-parser/lex.l"
+return '*';
+ YY_BREAK
+case 82:
+YY_RULE_SETUP
+#line 97 "./js-parser/lex.l"
+return '%';
+ YY_BREAK
+case 83:
+YY_RULE_SETUP
+#line 98 "./js-parser/lex.l"
+return '<';
+ YY_BREAK
+case 84:
+YY_RULE_SETUP
+#line 99 "./js-parser/lex.l"
+return '>';
+ YY_BREAK
+case 85:
+YY_RULE_SETUP
+#line 100 "./js-parser/lex.l"
+return '&';
+ YY_BREAK
+case 86:
+YY_RULE_SETUP
+#line 101 "./js-parser/lex.l"
+return '^';
+ YY_BREAK
+case 87:
+YY_RULE_SETUP
+#line 102 "./js-parser/lex.l"
+return '|';
+ YY_BREAK
+case 88:
+YY_RULE_SETUP
+#line 103 "./js-parser/lex.l"
+return '?';
+ YY_BREAK
+case 89:
+YY_RULE_SETUP
+#line 104 "./js-parser/lex.l"
+return ';';
+ YY_BREAK
+case 90:
+YY_RULE_SETUP
+#line 105 "./js-parser/lex.l"
+return '=';
+ YY_BREAK
+case 91:
+YY_RULE_SETUP
+#line 106 "./js-parser/lex.l"
+return '$';
+ YY_BREAK
+case 92:
+/* rule 92 can match eol */
+YY_RULE_SETUP
+#line 108 "./js-parser/lex.l"
+;
+ YY_BREAK
+case 93:
+YY_RULE_SETUP
+#line 109 "./js-parser/lex.l"
+;
+ YY_BREAK
+case 94:
+YY_RULE_SETUP
+#line 110 "./js-parser/lex.l"
+;
+ YY_BREAK
+case 95:
+/* rule 95 can match eol */
+YY_RULE_SETUP
+#line 111 "./js-parser/lex.l"
+;
+ YY_BREAK
+case 96:
+YY_RULE_SETUP
+#line 112 "./js-parser/lex.l"
+ECHO;
+ YY_BREAK
+#line 2717 "js-parser/lex.yy.c"
+case YY_STATE_EOF(INITIAL):
+case YY_STATE_EOF(COMMENT):
+ yyterminate();
+
+ case YY_END_OF_BUFFER:
+ {
+ /* Amount of text matched not including the EOB char. */
+ int yy_amount_of_matched_text = (int) (yy_cp - (yytext_ptr)) - 1;
+
+ /* Undo the effects of YY_DO_BEFORE_ACTION. */
+ *yy_cp = (yy_hold_char);
+ YY_RESTORE_YY_MORE_OFFSET
+
+ if ( YY_CURRENT_BUFFER_LVALUE->yy_buffer_status == YY_BUFFER_NEW )
+ {
+ /* We're scanning a new file or input source. It's
+ * possible that this happened because the user
+ * just pointed yyin at a new source and called
+ * yylex(). If so, then we have to assure
+ * consistency between YY_CURRENT_BUFFER and our
+ * globals. Here is the right place to do so, because
+ * this is the first action (other than possibly a
+ * back-up) that will match for the new input source.
+ */
+ (yy_n_chars) = YY_CURRENT_BUFFER_LVALUE->yy_n_chars;
+ YY_CURRENT_BUFFER_LVALUE->yy_input_file = yyin;
+ YY_CURRENT_BUFFER_LVALUE->yy_buffer_status = YY_BUFFER_NORMAL;
+ }
+
+ /* Note that here we test for yy_c_buf_p "<=" to the position
+ * of the first EOB in the buffer, since yy_c_buf_p will
+ * already have been incremented past the NUL character
+ * (since all states make transitions on EOB to the
+ * end-of-buffer state). Contrast this with the test
+ * in input().
+ */
+ if ( (yy_c_buf_p) <= &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] )
+ { /* This was really a NUL. */
+ yy_state_type yy_next_state;
+
+ (yy_c_buf_p) = (yytext_ptr) + yy_amount_of_matched_text;
+
+ yy_current_state = yy_get_previous_state( );
+
+ /* Okay, we're now positioned to make the NUL
+ * transition. We couldn't have
+ * yy_get_previous_state() go ahead and do it
+ * for us because it doesn't know how to deal
+ * with the possibility of jamming (and we don't
+ * want to build jamming into it because then it
+ * will run more slowly).
+ */
+
+ yy_next_state = yy_try_NUL_trans( yy_current_state );
+
+ yy_bp = (yytext_ptr) + YY_MORE_ADJ;
+
+ if ( yy_next_state )
+ {
+ /* Consume the NUL. */
+ yy_cp = ++(yy_c_buf_p);
+ yy_current_state = yy_next_state;
+ goto yy_match;
+ }
+
+ else
+ {
+ yy_cp = (yy_c_buf_p);
+ goto yy_find_action;
+ }
+ }
+
+ else switch ( yy_get_next_buffer( ) )
+ {
+ case EOB_ACT_END_OF_FILE:
+ {
+ (yy_did_buffer_switch_on_eof) = 0;
+
+ if ( yywrap( ) )
+ {
+ /* Note: because we've taken care in
+ * yy_get_next_buffer() to have set up
+ * yytext, we can now set up
+ * yy_c_buf_p so that if some total
+ * hoser (like flex itself) wants to
+ * call the scanner after we return the
+ * YY_NULL, it'll still work - another
+ * YY_NULL will get returned.
+ */
+ (yy_c_buf_p) = (yytext_ptr) + YY_MORE_ADJ;
+
+ yy_act = YY_STATE_EOF(YY_START);
+ goto do_action;
+ }
+
+ else
+ {
+ if ( ! (yy_did_buffer_switch_on_eof) )
+ YY_NEW_FILE;
+ }
+ break;
+ }
+
+ case EOB_ACT_CONTINUE_SCAN:
+ (yy_c_buf_p) =
+ (yytext_ptr) + yy_amount_of_matched_text;
+
+ yy_current_state = yy_get_previous_state( );
+
+ yy_cp = (yy_c_buf_p);
+ yy_bp = (yytext_ptr) + YY_MORE_ADJ;
+ goto yy_match;
+
+ case EOB_ACT_LAST_MATCH:
+ (yy_c_buf_p) =
+ &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)];
+
+ yy_current_state = yy_get_previous_state( );
+
+ yy_cp = (yy_c_buf_p);
+ yy_bp = (yytext_ptr) + YY_MORE_ADJ;
+ goto yy_find_action;
+ }
+ break;
+ }
+
+ default:
+ YY_FATAL_ERROR(
+ "fatal flex scanner internal error--no action found" );
+ } /* end of action switch */
+ } /* end of scanning one token */
+} /* end of yylex */
+
+/* yy_get_next_buffer - try to read in a new buffer
+ *
+ * Returns a code representing an action:
+ * EOB_ACT_LAST_MATCH -
+ * EOB_ACT_CONTINUE_SCAN - continue scanning from current position
+ * EOB_ACT_END_OF_FILE - end of file
+ */
+static int yy_get_next_buffer (void)
+{
+ register char *dest = YY_CURRENT_BUFFER_LVALUE->yy_ch_buf;
+ register char *source = (yytext_ptr);
+ register int number_to_move, i;
+ int ret_val;
+
+ if ( (yy_c_buf_p) > &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars) + 1] )
+ YY_FATAL_ERROR(
+ "fatal flex scanner internal error--end of buffer missed" );
+
+ if ( YY_CURRENT_BUFFER_LVALUE->yy_fill_buffer == 0 )
+ { /* Don't try to fill the buffer, so this is an EOF. */
+ if ( (yy_c_buf_p) - (yytext_ptr) - YY_MORE_ADJ == 1 )
+ {
+ /* We matched a single character, the EOB, so
+ * treat this as a final EOF.
+ */
+ return EOB_ACT_END_OF_FILE;
+ }
+
+ else
+ {
+ /* We matched some text prior to the EOB, first
+ * process it.
+ */
+ return EOB_ACT_LAST_MATCH;
+ }
+ }
+
+ /* Try to read more data. */
+
+ /* First move last chars to start of buffer. */
+ number_to_move = (int) ((yy_c_buf_p) - (yytext_ptr)) - 1;
+
+ for ( i = 0; i < number_to_move; ++i )
+ *(dest++) = *(source++);
+
+ if ( YY_CURRENT_BUFFER_LVALUE->yy_buffer_status == YY_BUFFER_EOF_PENDING )
+ /* don't do the read, it's not guaranteed to return an EOF,
+ * just force an EOF
+ */
+ YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars) = 0;
+
+ else
+ {
+ int num_to_read =
+ YY_CURRENT_BUFFER_LVALUE->yy_buf_size - number_to_move - 1;
+
+ while ( num_to_read <= 0 )
+ { /* Not enough room in the buffer - grow it. */
+
+ /* just a shorter name for the current buffer */
+ YY_BUFFER_STATE b = YY_CURRENT_BUFFER;
+
+ int yy_c_buf_p_offset =
+ (int) ((yy_c_buf_p) - b->yy_ch_buf);
+
+ if ( b->yy_is_our_buffer )
+ {
+ int new_size = b->yy_buf_size * 2;
+
+ if ( new_size <= 0 )
+ b->yy_buf_size += b->yy_buf_size / 8;
+ else
+ b->yy_buf_size *= 2;
+
+ b->yy_ch_buf = (char *)
+ /* Include room in for 2 EOB chars. */
+ yyrealloc((void *) b->yy_ch_buf,b->yy_buf_size + 2 );
+ }
+ else
+ /* Can't grow it, we don't own it. */
+ b->yy_ch_buf = 0;
+
+ if ( ! b->yy_ch_buf )
+ YY_FATAL_ERROR(
+ "fatal error - scanner input buffer overflow" );
+
+ (yy_c_buf_p) = &b->yy_ch_buf[yy_c_buf_p_offset];
+
+ num_to_read = YY_CURRENT_BUFFER_LVALUE->yy_buf_size -
+ number_to_move - 1;
+
+ }
+
+ if ( num_to_read > YY_READ_BUF_SIZE )
+ num_to_read = YY_READ_BUF_SIZE;
+
+ /* Read in more data. */
+ YY_INPUT( (&YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[number_to_move]),
+ (yy_n_chars), (size_t) num_to_read );
+
+ YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars);
+ }
+
+ if ( (yy_n_chars) == 0 )
+ {
+ if ( number_to_move == YY_MORE_ADJ )
+ {
+ ret_val = EOB_ACT_END_OF_FILE;
+ yyrestart(yyin );
+ }
+
+ else
+ {
+ ret_val = EOB_ACT_LAST_MATCH;
+ YY_CURRENT_BUFFER_LVALUE->yy_buffer_status =
+ YY_BUFFER_EOF_PENDING;
+ }
+ }
+
+ else
+ ret_val = EOB_ACT_CONTINUE_SCAN;
+
+ if ((yy_size_t) ((yy_n_chars) + number_to_move) > YY_CURRENT_BUFFER_LVALUE->yy_buf_size) {
+ /* Extend the array by 50%, plus the number we really need. */
+ yy_size_t new_size = (yy_n_chars) + number_to_move + ((yy_n_chars) >> 1);
+ YY_CURRENT_BUFFER_LVALUE->yy_ch_buf = (char *) yyrealloc((void *) YY_CURRENT_BUFFER_LVALUE->yy_ch_buf,new_size );
+ if ( ! YY_CURRENT_BUFFER_LVALUE->yy_ch_buf )
+ YY_FATAL_ERROR( "out of dynamic memory in yy_get_next_buffer()" );
+ }
+
+ (yy_n_chars) += number_to_move;
+ YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] = YY_END_OF_BUFFER_CHAR;
+ YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars) + 1] = YY_END_OF_BUFFER_CHAR;
+
+ (yytext_ptr) = &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[0];
+
+ return ret_val;
+}
+
+/* yy_get_previous_state - get the state just before the EOB char was reached */
+
+ static yy_state_type yy_get_previous_state (void)
+{
+ register yy_state_type yy_current_state;
+ register char *yy_cp;
+
+ yy_current_state = (yy_start);
+
+ for ( yy_cp = (yytext_ptr) + YY_MORE_ADJ; yy_cp < (yy_c_buf_p); ++yy_cp )
+ {
+ if ( yy_accept[yy_current_state] )
+ {
+ (yy_last_accepting_state) = yy_current_state;
+ (yy_last_accepting_cpos) = yy_cp;
+ }
+ if ( *yy_cp )
+ {
+ register YY_CHAR yy_c = YY_SC_TO_UI(*yy_cp);
+ if ( yy_accept[yy_current_state] )
+ {
+ (yy_last_accepting_state) = yy_current_state;
+ (yy_last_accepting_cpos) = yy_cp;
+ }
+ while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )
+ {
+ yy_current_state = (int) yy_def[yy_current_state];
+ }
+ yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c];
+ }
+ else
+ yy_current_state = yy_NUL_trans[yy_current_state];
+ }
+
+ return yy_current_state;
+}
+
+/* yy_try_NUL_trans - try to make a transition on the NUL character
+ *
+ * synopsis
+ * next_state = yy_try_NUL_trans( current_state );
+ */
+ static yy_state_type yy_try_NUL_trans (yy_state_type yy_current_state )
+{
+ register int yy_is_jam;
+
+ yy_current_state = yy_NUL_trans[yy_current_state];
+ yy_is_jam = (yy_current_state == 0);
+
+ return yy_is_jam ? 0 : yy_current_state;
+}
+
+#ifndef YY_NO_INPUT
+#ifdef __cplusplus
+ static int yyinput (void)
+#else
+ static int input (void)
+#endif
+
+{
+ int c;
+
+ *(yy_c_buf_p) = (yy_hold_char);
+
+ if ( *(yy_c_buf_p) == YY_END_OF_BUFFER_CHAR )
+ {
+ /* yy_c_buf_p now points to the character we want to return.
+ * If this occurs *before* the EOB characters, then it's a
+ * valid NUL; if not, then we've hit the end of the buffer.
+ */
+ if ( (yy_c_buf_p) < &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] )
+ /* This was really a NUL. */
+ *(yy_c_buf_p) = '\0';
+
+ else
+ { /* need more input */
+ int offset = (yy_c_buf_p) - (yytext_ptr);
+ ++(yy_c_buf_p);
+
+ switch ( yy_get_next_buffer( ) )
+ {
+ case EOB_ACT_LAST_MATCH:
+ /* This happens because yy_g_n_b()
+ * sees that we've accumulated a
+ * token and flags that we need to
+ * try matching the token before
+ * proceeding. But for input(),
+ * there's no matching to consider.
+ * So convert the EOB_ACT_LAST_MATCH
+ * to EOB_ACT_END_OF_FILE.
+ */
+
+ /* Reset buffer status. */
+ yyrestart(yyin );
+
+ /*FALLTHROUGH*/
+
+ case EOB_ACT_END_OF_FILE:
+ {
+ if ( yywrap( ) )
+ return EOF;
+
+ if ( ! (yy_did_buffer_switch_on_eof) )
+ YY_NEW_FILE;
+#ifdef __cplusplus
+ return yyinput();
+#else
+ return input();
+#endif
+ }
+
+ case EOB_ACT_CONTINUE_SCAN:
+ (yy_c_buf_p) = (yytext_ptr) + offset;
+ break;
+ }
+ }
+ }
+
+ c = *(unsigned char *) (yy_c_buf_p); /* cast for 8-bit char's */
+ *(yy_c_buf_p) = '\0'; /* preserve yytext */
+ (yy_hold_char) = *++(yy_c_buf_p);
+
+ if ( c == '\n' )
+
+ yylineno++;
+;
+
+ return c;
+}
+#endif /* ifndef YY_NO_INPUT */
+
+/** Immediately switch to a different input stream.
+ * @param input_file A readable stream.
+ *
+ * @note This function does not reset the start condition to @c INITIAL .
+ */
+ void yyrestart (FILE * input_file )
+{
+
+ if ( ! YY_CURRENT_BUFFER ){
+ yyensure_buffer_stack ();
+ YY_CURRENT_BUFFER_LVALUE =
+ yy_create_buffer(yyin,YY_BUF_SIZE );
+ }
+
+ yy_init_buffer(YY_CURRENT_BUFFER,input_file );
+ yy_load_buffer_state( );
+}
+
+/** Switch to a different input buffer.
+ * @param new_buffer The new input buffer.
+ *
+ */
+ void yy_switch_to_buffer (YY_BUFFER_STATE new_buffer )
+{
+
+ /* TODO. We should be able to replace this entire function body
+ * with
+ * yypop_buffer_state();
+ * yypush_buffer_state(new_buffer);
+ */
+ yyensure_buffer_stack ();
+ if ( YY_CURRENT_BUFFER == new_buffer )
+ return;
+
+ if ( YY_CURRENT_BUFFER )
+ {
+ /* Flush out information for old buffer. */
+ *(yy_c_buf_p) = (yy_hold_char);
+ YY_CURRENT_BUFFER_LVALUE->yy_buf_pos = (yy_c_buf_p);
+ YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars);
+ }
+
+ YY_CURRENT_BUFFER_LVALUE = new_buffer;
+ yy_load_buffer_state( );
+
+ /* We don't actually know whether we did this switch during
+ * EOF (yywrap()) processing, but the only time this flag
+ * is looked at is after yywrap() is called, so it's safe
+ * to go ahead and always set it.
+ */
+ (yy_did_buffer_switch_on_eof) = 1;
+}
+
+static void yy_load_buffer_state (void)
+{
+ (yy_n_chars) = YY_CURRENT_BUFFER_LVALUE->yy_n_chars;
+ (yytext_ptr) = (yy_c_buf_p) = YY_CURRENT_BUFFER_LVALUE->yy_buf_pos;
+ yyin = YY_CURRENT_BUFFER_LVALUE->yy_input_file;
+ (yy_hold_char) = *(yy_c_buf_p);
+}
+
+/** Allocate and initialize an input buffer state.
+ * @param file A readable stream.
+ * @param size The character buffer size in bytes. When in doubt, use @c YY_BUF_SIZE.
+ *
+ * @return the allocated buffer state.
+ */
+ YY_BUFFER_STATE yy_create_buffer (FILE * file, int size )
+{
+ YY_BUFFER_STATE b;
+
+ b = (YY_BUFFER_STATE) yyalloc(sizeof( struct yy_buffer_state ) );
+ if ( ! b )
+ YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" );
+
+ b->yy_buf_size = size;
+
+ /* yy_ch_buf has to be 2 characters longer than the size given because
+ * we need to put in 2 end-of-buffer characters.
+ */
+ b->yy_ch_buf = (char *) yyalloc(b->yy_buf_size + 2 );
+ if ( ! b->yy_ch_buf )
+ YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" );
+
+ b->yy_is_our_buffer = 1;
+
+ yy_init_buffer(b,file );
+
+ return b;
+}
+
+/** Destroy the buffer.
+ * @param b a buffer created with yy_create_buffer()
+ *
+ */
+ void yy_delete_buffer (YY_BUFFER_STATE b )
+{
+
+ if ( ! b )
+ return;
+
+ if ( b == YY_CURRENT_BUFFER ) /* Not sure if we should pop here. */
+ YY_CURRENT_BUFFER_LVALUE = (YY_BUFFER_STATE) 0;
+
+ if ( b->yy_is_our_buffer )
+ yyfree((void *) b->yy_ch_buf );
+
+ yyfree((void *) b );
+}
+
+#ifndef __cplusplus
+extern int isatty (int );
+#endif /* __cplusplus */
+
+/* Initializes or reinitializes a buffer.
+ * This function is sometimes called more than once on the same buffer,
+ * such as during a yyrestart() or at EOF.
+ */
+ static void yy_init_buffer (YY_BUFFER_STATE b, FILE * file )
+
+{
+ int oerrno = errno;
+
+ yy_flush_buffer(b );
+
+ b->yy_input_file = file;
+ b->yy_fill_buffer = 1;
+
+ /* If b is the current buffer, then yy_init_buffer was _probably_
+ * called from yyrestart() or through yy_get_next_buffer.
+ * In that case, we don't want to reset the lineno or column.
+ */
+ if (b != YY_CURRENT_BUFFER){
+ b->yy_bs_lineno = 1;
+ b->yy_bs_column = 0;
+ }
+
+ b->yy_is_interactive = file ? (isatty( fileno(file) ) > 0) : 0;
+
+ errno = oerrno;
+}
+
+/** Discard all buffered characters. On the next scan, YY_INPUT will be called.
+ * @param b the buffer state to be flushed, usually @c YY_CURRENT_BUFFER.
+ *
+ */
+ void yy_flush_buffer (YY_BUFFER_STATE b )
+{
+ if ( ! b )
+ return;
+
+ b->yy_n_chars = 0;
+
+ /* We always need two end-of-buffer characters. The first causes
+ * a transition to the end-of-buffer state. The second causes
+ * a jam in that state.
+ */
+ b->yy_ch_buf[0] = YY_END_OF_BUFFER_CHAR;
+ b->yy_ch_buf[1] = YY_END_OF_BUFFER_CHAR;
+
+ b->yy_buf_pos = &b->yy_ch_buf[0];
+
+ b->yy_at_bol = 1;
+ b->yy_buffer_status = YY_BUFFER_NEW;
+
+ if ( b == YY_CURRENT_BUFFER )
+ yy_load_buffer_state( );
+}
+
+/** Pushes the new state onto the stack. The new state becomes
+ * the current state. This function will allocate the stack
+ * if necessary.
+ * @param new_buffer The new state.
+ *
+ */
+void yypush_buffer_state (YY_BUFFER_STATE new_buffer )
+{
+ if (new_buffer == NULL)
+ return;
+
+ yyensure_buffer_stack();
+
+ /* This block is copied from yy_switch_to_buffer. */
+ if ( YY_CURRENT_BUFFER )
+ {
+ /* Flush out information for old buffer. */
+ *(yy_c_buf_p) = (yy_hold_char);
+ YY_CURRENT_BUFFER_LVALUE->yy_buf_pos = (yy_c_buf_p);
+ YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars);
+ }
+
+ /* Only push if top exists. Otherwise, replace top. */
+ if (YY_CURRENT_BUFFER)
+ (yy_buffer_stack_top)++;
+ YY_CURRENT_BUFFER_LVALUE = new_buffer;
+
+ /* copied from yy_switch_to_buffer. */
+ yy_load_buffer_state( );
+ (yy_did_buffer_switch_on_eof) = 1;
+}
+
+/** Removes and deletes the top of the stack, if present.
+ * The next element becomes the new top.
+ *
+ */
+void yypop_buffer_state (void)
+{
+ if (!YY_CURRENT_BUFFER)
+ return;
+
+ yy_delete_buffer(YY_CURRENT_BUFFER );
+ YY_CURRENT_BUFFER_LVALUE = NULL;
+ if ((yy_buffer_stack_top) > 0)
+ --(yy_buffer_stack_top);
+
+ if (YY_CURRENT_BUFFER) {
+ yy_load_buffer_state( );
+ (yy_did_buffer_switch_on_eof) = 1;
+ }
+}
+
+/* Allocates the stack if it does not exist.
+ * Guarantees space for at least one push.
+ */
+static void yyensure_buffer_stack (void)
+{
+ int num_to_alloc;
+
+ if (!(yy_buffer_stack)) {
+
+ /* First allocation is just for 2 elements, since we don't know if this
+ * scanner will even need a stack. We use 2 instead of 1 to avoid an
+ * immediate realloc on the next call.
+ */
+ num_to_alloc = 1;
+ (yy_buffer_stack) = (struct yy_buffer_state**)yyalloc
+ (num_to_alloc * sizeof(struct yy_buffer_state*)
+ );
+ if ( ! (yy_buffer_stack) )
+ YY_FATAL_ERROR( "out of dynamic memory in yyensure_buffer_stack()" );
+
+ memset((yy_buffer_stack), 0, num_to_alloc * sizeof(struct yy_buffer_state*));
+
+ (yy_buffer_stack_max) = num_to_alloc;
+ (yy_buffer_stack_top) = 0;
+ return;
+ }
+
+ if ((yy_buffer_stack_top) >= ((yy_buffer_stack_max)) - 1){
+
+ /* Increase the buffer to prepare for a possible push. */
+ int grow_size = 8 /* arbitrary grow size */;
+
+ num_to_alloc = (yy_buffer_stack_max) + grow_size;
+ (yy_buffer_stack) = (struct yy_buffer_state**)yyrealloc
+ ((yy_buffer_stack),
+ num_to_alloc * sizeof(struct yy_buffer_state*)
+ );
+ if ( ! (yy_buffer_stack) )
+ YY_FATAL_ERROR( "out of dynamic memory in yyensure_buffer_stack()" );
+
+ /* zero only the new slots.*/
+ memset((yy_buffer_stack) + (yy_buffer_stack_max), 0, grow_size * sizeof(struct yy_buffer_state*));
+ (yy_buffer_stack_max) = num_to_alloc;
+ }
+}
+
+/** Setup the input buffer state to scan directly from a user-specified character buffer.
+ * @param base the character buffer
+ * @param size the size in bytes of the character buffer
+ *
+ * @return the newly allocated buffer state object.
+ */
+YY_BUFFER_STATE yy_scan_buffer (char * base, yy_size_t size )
+{
+ YY_BUFFER_STATE b;
+
+ if ( size < 2 ||
+ base[size-2] != YY_END_OF_BUFFER_CHAR ||
+ base[size-1] != YY_END_OF_BUFFER_CHAR )
+ /* They forgot to leave room for the EOB's. */
+ return 0;
+
+ b = (YY_BUFFER_STATE) yyalloc(sizeof( struct yy_buffer_state ) );
+ if ( ! b )
+ YY_FATAL_ERROR( "out of dynamic memory in yy_scan_buffer()" );
+
+ b->yy_buf_size = size - 2; /* "- 2" to take care of EOB's */
+ b->yy_buf_pos = b->yy_ch_buf = base;
+ b->yy_is_our_buffer = 0;
+ b->yy_input_file = 0;
+ b->yy_n_chars = b->yy_buf_size;
+ b->yy_is_interactive = 0;
+ b->yy_at_bol = 1;
+ b->yy_fill_buffer = 0;
+ b->yy_buffer_status = YY_BUFFER_NEW;
+
+ yy_switch_to_buffer(b );
+
+ return b;
+}
+
+/** Setup the input buffer state to scan a string. The next call to yylex() will
+ * scan from a @e copy of @a str.
+ * @param yystr a NUL-terminated string to scan
+ *
+ * @return the newly allocated buffer state object.
+ * @note If you want to scan bytes that may contain NUL values, then use
+ * yy_scan_bytes() instead.
+ */
+YY_BUFFER_STATE yy_scan_string (yyconst char * yystr )
+{
+
+ return yy_scan_bytes(yystr,strlen(yystr) );
+}
+
+/** Setup the input buffer state to scan the given bytes. The next call to yylex() will
+ * scan from a @e copy of @a bytes.
+ * @param yybytes the byte buffer to scan
+ * @param _yybytes_len the number of bytes in the buffer pointed to by @a bytes.
+ *
+ * @return the newly allocated buffer state object.
+ */
+YY_BUFFER_STATE yy_scan_bytes (yyconst char * yybytes, int _yybytes_len )
+{
+ YY_BUFFER_STATE b;
+ char *buf;
+ yy_size_t n;
+ int i;
+
+ /* Get memory for full buffer, including space for trailing EOB's. */
+ n = _yybytes_len + 2;
+ buf = (char *) yyalloc(n );
+ if ( ! buf )
+ YY_FATAL_ERROR( "out of dynamic memory in yy_scan_bytes()" );
+
+ for ( i = 0; i < _yybytes_len; ++i )
+ buf[i] = yybytes[i];
+
+ buf[_yybytes_len] = buf[_yybytes_len+1] = YY_END_OF_BUFFER_CHAR;
+
+ b = yy_scan_buffer(buf,n );
+ if ( ! b )
+ YY_FATAL_ERROR( "bad buffer in yy_scan_bytes()" );
+
+ /* It's okay to grow etc. this buffer, and we should throw it
+ * away when we're done.
+ */
+ b->yy_is_our_buffer = 1;
+
+ return b;
+}
+
+#ifndef YY_EXIT_FAILURE
+#define YY_EXIT_FAILURE 2
+#endif
+
+static void yy_fatal_error (yyconst char* msg )
+{
+ (void) fprintf( stderr, "%s\n", msg );
+ exit( YY_EXIT_FAILURE );
+}
+
+/* Redefine yyless() so it works in section 3 code. */
+
+#undef yyless
+#define yyless(n) \
+ do \
+ { \
+ /* Undo effects of setting up yytext. */ \
+ int yyless_macro_arg = (n); \
+ YY_LESS_LINENO(yyless_macro_arg);\
+ yytext[yyleng] = (yy_hold_char); \
+ (yy_c_buf_p) = yytext + yyless_macro_arg; \
+ (yy_hold_char) = *(yy_c_buf_p); \
+ *(yy_c_buf_p) = '\0'; \
+ yyleng = yyless_macro_arg; \
+ } \
+ while ( 0 )
+
+/* Accessor methods (get/set functions) to struct members. */
+
+/** Get the current line number.
+ *
+ */
+int yyget_lineno (void)
+{
+
+ return yylineno;
+}
+
+/** Get the input stream.
+ *
+ */
+FILE *yyget_in (void)
+{
+ return yyin;
+}
+
+/** Get the output stream.
+ *
+ */
+FILE *yyget_out (void)
+{
+ return yyout;
+}
+
+/** Get the length of the current token.
+ *
+ */
+int yyget_leng (void)
+{
+ return yyleng;
+}
+
+/** Get the current token.
+ *
+ */
+
+char *yyget_text (void)
+{
+ return yytext;
+}
+
+/** Set the current line number.
+ * @param line_number
+ *
+ */
+void yyset_lineno (int line_number )
+{
+
+ yylineno = line_number;
+}
+
+/** Set the input stream. This does not discard the current
+ * input buffer.
+ * @param in_str A readable stream.
+ *
+ * @see yy_switch_to_buffer
+ */
+void yyset_in (FILE * in_str )
+{
+ yyin = in_str ;
+}
+
+void yyset_out (FILE * out_str )
+{
+ yyout = out_str ;
+}
+
+int yyget_debug (void)
+{
+ return yy_flex_debug;
+}
+
+void yyset_debug (int bdebug )
+{
+ yy_flex_debug = bdebug ;
+}
+
+static int yy_init_globals (void)
+{
+ /* Initialization is the same as for the non-reentrant scanner.
+ * This function is called from yylex_destroy(), so don't allocate here.
+ */
+
+ /* We do not touch yylineno unless the option is enabled. */
+ yylineno = 1;
+
+ (yy_buffer_stack) = 0;
+ (yy_buffer_stack_top) = 0;
+ (yy_buffer_stack_max) = 0;
+ (yy_c_buf_p) = (char *) 0;
+ (yy_init) = 0;
+ (yy_start) = 0;
+
+/* Defined in main.c */
+#ifdef YY_STDINIT
+ yyin = stdin;
+ yyout = stdout;
+#else
+ yyin = (FILE *) 0;
+ yyout = (FILE *) 0;
+#endif
+
+ /* For future reference: Set errno on error, since we are called by
+ * yylex_init()
+ */
+ return 0;
+}
+
+/* yylex_destroy is for both reentrant and non-reentrant scanners. */
+int yylex_destroy (void)
+{
+
+ /* Pop the buffer stack, destroying each element. */
+ while(YY_CURRENT_BUFFER){
+ yy_delete_buffer(YY_CURRENT_BUFFER );
+ YY_CURRENT_BUFFER_LVALUE = NULL;
+ yypop_buffer_state();
+ }
+
+ /* Destroy the stack itself. */
+ yyfree((yy_buffer_stack) );
+ (yy_buffer_stack) = NULL;
+
+ /* Reset the globals. This is important in a non-reentrant scanner so the next time
+ * yylex() is called, initialization will occur. */
+ yy_init_globals( );
+
+ return 0;
+}
+
+/*
+ * Internal utility routines.
+ */
+
+#ifndef yytext_ptr
+static void yy_flex_strncpy (char* s1, yyconst char * s2, int n )
+{
+ register int i;
+ for ( i = 0; i < n; ++i )
+ s1[i] = s2[i];
+}
+#endif
+
+#ifdef YY_NEED_STRLEN
+static int yy_flex_strlen (yyconst char * s )
+{
+ register int n;
+ for ( n = 0; s[n]; ++n )
+ ;
+
+ return n;
+}
+#endif
+
+void *yyalloc (yy_size_t size )
+{
+ return (void *) malloc( size );
+}
+
+void *yyrealloc (void * ptr, yy_size_t size )
+{
+ /* The cast to (char *) in the following accommodates both
+ * implementations that use char* generic pointers, and those
+ * that use void* generic pointers. It works with the latter
+ * because both ANSI C and C++ allow castless assignment from
+ * any pointer type to void*, and deal with argument conversions
+ * as though doing an assignment.
+ */
+ return (void *) realloc( (char *) ptr, size );
+}
+
+void yyfree (void * ptr )
+{
+ free( (char *) ptr ); /* see yyrealloc() for (char *) cast */
+}
+
+#define YYTABLES_NAME "yytables"
+
+#line 112 "./js-parser/lex.l"
+
+
+//"<<=" return LSHIFTEQUA;
+// RESERVED = 282,
+// IF_WITHOUT_ELSE = 288,
+// IDENT = 317,
+
+// AUTOPLUSPLUS = 319,
+// AUTOMINUSMINUS = 320
+
+
+int yywrap ()
+{
+ return 1;
+}
+
+
diff --git a/plugins/language-support-js/lex.yy.h b/plugins/language-support-js/lex.yy.h
deleted file mode 120000
index 0bc0432..0000000
--- a/plugins/language-support-js/lex.yy.h
+++ /dev/null
@@ -1 +0,0 @@
-../symbol-db/anjuta-tags/js-parser/lex.yy.h
\ No newline at end of file
diff --git a/plugins/language-support-js/lex.yy.h b/plugins/language-support-js/lex.yy.h
new file mode 100644
index 0000000..9b90ca6
--- /dev/null
+++ b/plugins/language-support-js/lex.yy.h
@@ -0,0 +1,339 @@
+#ifndef yyHEADER_H
+#define yyHEADER_H 1
+#define yyIN_HEADER 1
+
+#line 6 "./parser/lex.yy.h"
+
+#line 8 "./parser/lex.yy.h"
+
+#define YY_INT_ALIGNED short int
+
+/* A lexical scanner generated by flex */
+
+#define FLEX_SCANNER
+#define YY_FLEX_MAJOR_VERSION 2
+#define YY_FLEX_MINOR_VERSION 5
+#define YY_FLEX_SUBMINOR_VERSION 35
+#if YY_FLEX_SUBMINOR_VERSION > 0
+#define FLEX_BETA
+#endif
+
+/* First, we deal with platform-specific or compiler-specific issues. */
+
+/* begin standard C headers. */
+#include <stdio.h>
+#include <string.h>
+#include <errno.h>
+#include <stdlib.h>
+
+/* end standard C headers. */
+
+/* flex integer type definitions */
+
+#ifndef FLEXINT_H
+#define FLEXINT_H
+
+/* C99 systems have <inttypes.h>. Non-C99 systems may or may not. */
+
+#if defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L
+
+/* C99 says to define __STDC_LIMIT_MACROS before including stdint.h,
+ * if you want the limit (max/min) macros for int types.
+ */
+#ifndef __STDC_LIMIT_MACROS
+#define __STDC_LIMIT_MACROS 1
+#endif
+
+#include <inttypes.h>
+typedef int8_t flex_int8_t;
+typedef uint8_t flex_uint8_t;
+typedef int16_t flex_int16_t;
+typedef uint16_t flex_uint16_t;
+typedef int32_t flex_int32_t;
+typedef uint32_t flex_uint32_t;
+#else
+typedef signed char flex_int8_t;
+typedef short int flex_int16_t;
+typedef int flex_int32_t;
+typedef unsigned char flex_uint8_t;
+typedef unsigned short int flex_uint16_t;
+typedef unsigned int flex_uint32_t;
+
+/* Limits of integral types. */
+#ifndef INT8_MIN
+#define INT8_MIN (-128)
+#endif
+#ifndef INT16_MIN
+#define INT16_MIN (-32767-1)
+#endif
+#ifndef INT32_MIN
+#define INT32_MIN (-2147483647-1)
+#endif
+#ifndef INT8_MAX
+#define INT8_MAX (127)
+#endif
+#ifndef INT16_MAX
+#define INT16_MAX (32767)
+#endif
+#ifndef INT32_MAX
+#define INT32_MAX (2147483647)
+#endif
+#ifndef UINT8_MAX
+#define UINT8_MAX (255U)
+#endif
+#ifndef UINT16_MAX
+#define UINT16_MAX (65535U)
+#endif
+#ifndef UINT32_MAX
+#define UINT32_MAX (4294967295U)
+#endif
+
+#endif /* ! C99 */
+
+#endif /* ! FLEXINT_H */
+
+#ifdef __cplusplus
+
+/* The "const" storage-class-modifier is valid. */
+#define YY_USE_CONST
+
+#else /* ! __cplusplus */
+
+/* C99 requires __STDC__ to be defined as 1. */
+#if defined (__STDC__)
+
+#define YY_USE_CONST
+
+#endif /* defined (__STDC__) */
+#endif /* ! __cplusplus */
+
+#ifdef YY_USE_CONST
+#define yyconst const
+#else
+#define yyconst
+#endif
+
+/* Size of default input buffer. */
+#ifndef YY_BUF_SIZE
+#ifdef __ia64__
+/* On IA-64, the buffer size is 16k, not 8k.
+ * Moreover, YY_BUF_SIZE is 2*YY_READ_BUF_SIZE in the general case.
+ * Ditto for the __ia64__ case accordingly.
+ */
+#define YY_BUF_SIZE 32768
+#else
+#define YY_BUF_SIZE 16384
+#endif /* __ia64__ */
+#endif
+
+#ifndef YY_TYPEDEF_YY_BUFFER_STATE
+#define YY_TYPEDEF_YY_BUFFER_STATE
+typedef struct yy_buffer_state *YY_BUFFER_STATE;
+#endif
+
+extern int yyleng;
+
+extern FILE *yyin, *yyout;
+
+#ifndef YY_TYPEDEF_YY_SIZE_T
+#define YY_TYPEDEF_YY_SIZE_T
+typedef size_t yy_size_t;
+#endif
+
+#ifndef YY_STRUCT_YY_BUFFER_STATE
+#define YY_STRUCT_YY_BUFFER_STATE
+struct yy_buffer_state
+ {
+ FILE *yy_input_file;
+
+ char *yy_ch_buf; /* input buffer */
+ char *yy_buf_pos; /* current position in input buffer */
+
+ /* Size of input buffer in bytes, not including room for EOB
+ * characters.
+ */
+ yy_size_t yy_buf_size;
+
+ /* Number of characters read into yy_ch_buf, not including EOB
+ * characters.
+ */
+ int yy_n_chars;
+
+ /* Whether we "own" the buffer - i.e., we know we created it,
+ * and can realloc() it to grow it, and should free() it to
+ * delete it.
+ */
+ int yy_is_our_buffer;
+
+ /* Whether this is an "interactive" input source; if so, and
+ * if we're using stdio for input, then we want to use getc()
+ * instead of fread(), to make sure we stop fetching input after
+ * each newline.
+ */
+ int yy_is_interactive;
+
+ /* Whether we're considered to be at the beginning of a line.
+ * If so, '^' rules will be active on the next match, otherwise
+ * not.
+ */
+ int yy_at_bol;
+
+ int yy_bs_lineno; /**< The line count. */
+ int yy_bs_column; /**< The column count. */
+
+ /* Whether to try to fill the input buffer when we reach the
+ * end of it.
+ */
+ int yy_fill_buffer;
+
+ int yy_buffer_status;
+
+ };
+#endif /* !YY_STRUCT_YY_BUFFER_STATE */
+
+void yyrestart (FILE *input_file );
+void yy_switch_to_buffer (YY_BUFFER_STATE new_buffer );
+YY_BUFFER_STATE yy_create_buffer (FILE *file,int size );
+void yy_delete_buffer (YY_BUFFER_STATE b );
+void yy_flush_buffer (YY_BUFFER_STATE b );
+void yypush_buffer_state (YY_BUFFER_STATE new_buffer );
+void yypop_buffer_state (void );
+
+YY_BUFFER_STATE yy_scan_buffer (char *base,yy_size_t size );
+YY_BUFFER_STATE yy_scan_string (yyconst char *yy_str );
+YY_BUFFER_STATE yy_scan_bytes (yyconst char *bytes,int len );
+
+void *yyalloc (yy_size_t );
+void *yyrealloc (void *,yy_size_t );
+void yyfree (void * );
+
+/* Begin user sect3 */
+
+extern int yylineno;
+
+extern char *yytext;
+#define yytext_ptr yytext
+
+#ifdef YY_HEADER_EXPORT_START_CONDITIONS
+#define INITIAL 0
+#define COMMENT 1
+
+#endif
+
+#ifndef YY_NO_UNISTD_H
+/* Special case for "unistd.h", since it is non-ANSI. We include it way
+ * down here because we want the user's section 1 to have been scanned first.
+ * The user has a chance to override it with an option.
+ */
+#include <unistd.h>
+#endif
+
+#ifndef YY_EXTRA_TYPE
+#define YY_EXTRA_TYPE void *
+#endif
+
+/* Accessor methods to globals.
+ These are made visible to non-reentrant scanners for convenience. */
+
+int yylex_destroy (void );
+
+int yyget_debug (void );
+
+void yyset_debug (int debug_flag );
+
+YY_EXTRA_TYPE yyget_extra (void );
+
+void yyset_extra (YY_EXTRA_TYPE user_defined );
+
+FILE *yyget_in (void );
+
+void yyset_in (FILE * in_str );
+
+FILE *yyget_out (void );
+
+void yyset_out (FILE * out_str );
+
+int yyget_leng (void );
+
+char *yyget_text (void );
+
+int yyget_lineno (void );
+
+void yyset_lineno (int line_number );
+
+YYSTYPE * yyget_lval (void );
+
+void yyset_lval (YYSTYPE * yylval_param );
+
+/* Macros after this point can all be overridden by user definitions in
+ * section 1.
+ */
+
+#ifndef YY_SKIP_YYWRAP
+#ifdef __cplusplus
+extern "C" int yywrap (void );
+#else
+extern int yywrap (void );
+#endif
+#endif
+
+#ifndef yytext_ptr
+static void yy_flex_strncpy (char *,yyconst char *,int );
+#endif
+
+#ifdef YY_NEED_STRLEN
+static int yy_flex_strlen (yyconst char * );
+#endif
+
+#ifndef YY_NO_INPUT
+
+#endif
+
+/* Amount of stuff to slurp up with each read. */
+#ifndef YY_READ_BUF_SIZE
+#ifdef __ia64__
+/* On IA-64, the buffer size is 16k, not 8k */
+#define YY_READ_BUF_SIZE 16384
+#else
+#define YY_READ_BUF_SIZE 8192
+#endif /* __ia64__ */
+#endif
+
+/* Number of entries by which start-condition stack grows. */
+#ifndef YY_START_STACK_INCR
+#define YY_START_STACK_INCR 25
+#endif
+
+/* Default declaration of generated scanner - a define so the user can
+ * easily add parameters.
+ */
+#ifndef YY_DECL
+#define YY_DECL_IS_OURS 1
+
+extern int yylex \
+ (YYSTYPE * yylval_param );
+
+#define YY_DECL int yylex \
+ (YYSTYPE * yylval_param )
+#endif /* !YY_DECL */
+
+/* yy_get_previous_state - get the state just before the EOB char was reached */
+
+#undef YY_NEW_FILE
+#undef YY_FLUSH_BUFFER
+#undef yy_set_bol
+#undef yy_new_buffer
+#undef yy_set_interactive
+#undef YY_DO_BEFORE_ACTION
+
+#ifdef YY_DECL_IS_OURS
+#undef YY_DECL_IS_OURS
+#undef YY_DECL
+#endif
+
+#line 109 "./parser/lex.l"
+
+
+#line 338 "./parser/lex.yy.h"
+#undef yyIN_HEADER
+#endif /* yyHEADER_H */
diff --git a/po/te.po b/po/te.po
index fbdf5c6..2a31c1c 100644
--- a/po/te.po
+++ b/po/te.po
@@ -1,5 +1,5 @@
# translation of anjuta.HEAD.po to Telugu
-# Copyright (C) 2012, swecha telugu localisation team.
+# Copyright (C) 2012, swecha telugu localisation team.<localization swecha net>
# This file is distributed under the same license as the PACKAGE package.
# Kiran Chandra <kiran swecha net>
#
@@ -11,10 +11,10 @@ msgstr ""
"Project-Id-Version: anjuta.HEAD\n"
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?"
"product=anjuta&keywords=I18N+L10N&component=core application\n"
-"POT-Creation-Date: 2012-03-05 18:34+0000\n"
-"PO-Revision-Date: 2012-03-16 16:41+0530\n"
-"Last-Translator: Krishnababu Krothapalli <kkrothap redhat com>\n"
-"Language-Team: Telugu <Fedora-trans-te redhat com>\n"
+"POT-Creation-Date: 2012-03-31 20:55+0000\n"
+"PO-Revision-Date: 2012-04-17 15:08+0530\n"
+"Last-Translator: Sasi Bhushan Boddepalli <sasi swecha net>\n"
+"Language-Team: Telugu <indlinux-telugu lists sourceforge net>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
@@ -80,17 +80,14 @@ msgstr "àààààà àààà1"
#: ../libanjuta/anjuta-convert.c:74 ../libanjuta/anjuta-convert.c:111
#, c-format
msgid "The file you are trying to open contains an invalid byte sequence."
-msgstr ""
-"àààà àààààààà ààààààààààààààà ààààà àààààààààà àààà àààààà àààààààààààà"
+msgstr "àààà àààààààà ààààààààààààààà ààààà àààààààààà àààà àààààà àààààààààààà"
#: ../libanjuta/anjuta-convert.c:168 ../libanjuta/anjuta-convert.c:207
#, c-format
msgid ""
"Anjuta was not able to automatically determine the encoding of the file you "
"want to open."
-msgstr ""
-"àààà ààààààààà ààààà ààààà àààààààààà ààààà ààààààààààààà àààààààà àààààà "
-" ààààààààà"
+msgstr "àààà ààààààààà ààààà ààààà àààààààààà ààààà ààààààààààààà àààààààà àààààà ààààààààà"
#: ../libanjuta/anjuta-c-plugin-factory.c:108
#, c-format
@@ -359,10 +356,8 @@ msgid ""
"many suitable plugins. Removing the preferred plugin will let Anjuta prompt "
"you again to choose different plugin."
msgstr ""
-"à ààààààààà ààààààà ààààà àààààààà ààààààà ààààààààààààààà ààààààààà "
-"ààààààààà ààààà "
-"ààààààààà.à ààààà ààààààà ààààààààààà ààà àà ààààà ààààààààà ààààààà "
-"ààààà ààààààààà "
+"à ààààààààà ààààààà ààààà àààààààà ààààààà ààààààààààààààà ààààààààà ààààààààà ààààà "
+"ààààààààà.à ààààà ààààààà ààààààààààà ààà àà ààààà ààààààààà ààààààà ààààà ààààààààà "
"àààààààààààà."
#: ../libanjuta/anjuta-plugin-manager.c:1242
@@ -493,9 +488,7 @@ msgstr "àààààà àààààà ààààà àà ààà
msgid ""
"Failed to read '%s': XML parse error. Invalid or corrupted Anjuta plugins "
"profile."
-msgstr ""
-"%s ààààààààà ààààà àààààà: XML ààà ààààà. àààààààà àààà ààààààà àààààà "
-"ààààààà ààààààààà."
+msgstr "%s ààààààààà ààààà àààààà: XML ààà ààààà. àààààààà àààà ààààààà àààààà ààààààà ààààààààà."
#. <Pluginname>: Install it from <some location on the web>
#: ../libanjuta/anjuta-profile.c:699
@@ -539,15 +532,12 @@ msgstr "ààààààààà àààààààààà(_D)"
msgid "There is %d item with unsaved changes. Save changes before closing?"
msgid_plural ""
"There are %d items with unsaved changes. Save changes before closing?"
-msgstr[0] ""
-"ààààà %d àààààà ààààà ààààààààà ààààààà. ààààààà ààààà, ààààààààà ààà ààààà?"
-msgstr[1] ""
-"ààààà %d àààààààà ààààà ààààààààà ààààààà. ààààààà ààààà, ààààààààà ààà ààààà?"
+msgstr[0] "ààààà %d àààààà ààààà ààààààààà ààààààà. ààààààà ààààà, ààààààààà ààà ààààà?"
+msgstr[1] "ààààà %d àààààààà ààààà ààààààààà ààààààà. ààààààà ààààà, ààààààààà ààà ààààà?"
#: ../libanjuta/anjuta-save-prompt.c:305
msgid "There is an item with unsaved changes. Save changes before closing?"
-msgstr ""
-"ààààà àà àààààà ààààà ààààààààà ààààààà. ààààààà ààààà, ààààààààà ààà ààààà?"
+msgstr "ààààà àà àààààà ààààà ààààààààà ààààààà. ààààààà ààààà, ààààààààà ààà ààààà?"
#: ../libanjuta/anjuta-tree-combo.c:1079
msgid "<Invalid>"
@@ -588,10 +578,8 @@ msgid ""
"installing missing packages. Please install \"packagekit-gnome\" package "
"from your distribution, or install the missing packages manually."
msgstr ""
-"àààà àààà ààààààà àààààààààààààààà àààà. àààààà ààààààà àààààààààààà àààà "
-"ààààà ààààààààààà ààààà."
-"àààààà \"packagekit-gnome\" àààààà ààààààààààà àààà àààà àààààà ààààààà "
-"ààààààààà àà ààààààààààà"
+"àààà àààà ààààààà àààààààààààààààà àààà. àààààà ààààààà àààààààààààà àààà ààààà ààààààààààà ààààà."
+"àààààà \"packagekit-gnome\" àààààà ààààààààààà àààà àààà àààààà ààààààà ààààààààà àà ààààààààààà"
#: ../libanjuta/anjuta-utils.c:512
#, c-format
@@ -687,21 +675,22 @@ msgstr "%s àààààà ààààààààààà"
msgid "Could not find application pixmap file: %s"
msgstr "%s ààà pixmap àààààà àààààààààààààà àààààààààààà"
-#: ../plugins/am-project/amp-group.c:541
+#: ../plugins/am-project/amp-group.c:542
msgid "Please specify group name"
msgstr "àààààà àààààà ààààà àààààà àààààààà"
-#: ../plugins/am-project/amp-group.c:555
+#: ../plugins/am-project/amp-group.c:556
+#| msgid ""
+#| "Group name can only contain alphanumeric or \"#$:%+,- = ^_`~\" characters"
msgid ""
-"Group name can only contain alphanumeric or \"#$:%+,- = ^_`~\" characters"
-msgstr ""
-"àààà àà àààà ààààààààà, àààààà àààà \"#$:%+,- = ^_`~\" ààààààà ààààà ààààààààà"
+"Group name can only contain alphanumeric or \"#$:%+,- = ^_`~/\" characters"
+msgstr "àààà àà àààà ààààààààà, àààààà àààà \"#$:%+,- = ^_`~/\" ààààààà ààààà ààààààààà "
#: ../plugins/am-project/amp-group.c:580
-#: ../plugins/am-project/am-project.c:1688
-#: ../plugins/am-project/am-project.c:1779
-#: ../plugins/dir-project/dir-project.c:731
-#: ../plugins/dir-project/dir-project.c:843
+#: ../plugins/am-project/am-project.c:1697
+#: ../plugins/am-project/am-project.c:1790
+#: ../plugins/dir-project/dir-project.c:723
+#: ../plugins/dir-project/dir-project.c:857
#: ../plugins/mk-project/mk-project.c:723
#: ../plugins/mk-project/mk-project.c:800
#: ../plugins/mk-project/mk-project.c:874
@@ -714,13 +703,13 @@ msgid "Root"
msgstr "Root"
#: ../plugins/am-project/am-project.c:98
-#: ../plugins/dir-project/dir-project.c:854
+#: ../plugins/dir-project/dir-project.c:868
#: ../plugins/mk-project/mk-project.c:66
msgid "Group"
msgstr "àààààà"
#: ../plugins/am-project/am-project.c:106
-#: ../plugins/dir-project/dir-project.c:858
+#: ../plugins/dir-project/dir-project.c:872
#: ../plugins/mk-project/mk-project.c:71
msgid "Source"
msgstr "ààààà"
@@ -783,11 +772,11 @@ msgstr "àààààààà"
msgid "Package"
msgstr "àààà"
-#: ../plugins/am-project/am-project.c:1716
+#: ../plugins/am-project/am-project.c:1727
msgid "Unable to parse project file"
msgstr "àààààààààà ààààààà àààààà ààààààààààààà"
-#: ../plugins/am-project/am-project.c:1727
+#: ../plugins/am-project/am-project.c:1738
#, c-format
msgid "Project doesn't exist or has an invalid path"
msgstr "àààààààààà àààà àààà àà ààààààà àààà àààà"
@@ -838,9 +827,7 @@ msgstr "àààààà:"
#: ../plugins/am-project/am-properties.c:61
msgid ""
"Project version, typically a few numbers separated by dot by example '1.0.0'"
-msgstr ""
-"àààààààààà ààààààà, àààààààà '1 .0.0'àààà ààààààààà àààààà ààààààà àààà "
-"àààààà àààà ààààààààà"
+msgstr "àààààààààà ààààààà, àààààààà '1 .0.0'àààà ààààààààà àààààà ààààààà àààà àààààà àààà ààààààààà"
#: ../plugins/am-project/am-properties.c:67
msgid "Bug report URL:"
@@ -850,9 +837,7 @@ msgstr "ààà ààààààà URL"
msgid ""
"An email address or a link to a web page where the user can report bug. It "
"is optional."
-msgstr ""
-"àà ààààààà àààààà àààà ààààààààààà ààà àààààààà ààààà àà àààà àààààà àà ààààà."
-" ààà àààààààààààà."
+msgstr "àà ààààààà àààààà àààà ààààààààààà ààà àààààààà ààààà àà àààà àààààà àà ààààà. ààà àààààààààààà."
#: ../plugins/am-project/am-properties.c:76
msgid "Package name:"
@@ -863,8 +848,7 @@ msgid ""
"Package name, it can contains only alphanumerics and underscore characters."
"It is generated from the project name if not provided."
msgstr ""
-"àààà àààà, ààà ààààà àààààààààààààààà ààààà ààààààà ààààà àààààààààà ààààà "
-"ààààààààà.ààààà "
+"àààà àààà, ààà ààààà àààààààààààààààà ààààà ààààààà ààààà àààààààààà ààààà ààààààààà.ààààà "
"àààà àààà ààààà àààààààà ààààààààààààà àààà ààààààà àààààààà."
#: ../plugins/am-project/am-properties.c:86 ../plugins/git/anjuta-git.ui.h:5
@@ -882,9 +866,7 @@ msgstr "Libtool àààààààà:"
#: ../plugins/am-project/am-properties.c:98
msgid "Add support to compile shared and static libraries with libtool."
-msgstr ""
-"libtool àà ààààâàà ààààà àààààààà àààààààààà ààààààààààààààà àààààààààà "
-"àààààà."
+msgstr "libtool àà ààààâàà ààààà àààààààà àààààààààà ààààààààààààààà àààààààààà àààààà."
#: ../plugins/am-project/am-properties.c:104
#: ../plugins/am-project/am-properties.c:211
@@ -912,8 +894,7 @@ msgstr "C ààààààààààààà àààààààà:"
#: ../plugins/am-project/am-properties.c:116
#: ../plugins/am-project/am-properties.c:223
msgid "Common additional C preprocessor flags for all targets in this group."
-msgstr ""
-"à ààààààà àààà ààààà ààààààààà àààà àààààà ààààà C ààààààààààààà àààààààà."
+msgstr "à ààààààà àààà ààààà ààààààààà àààà àààààà ààààà C ààààààààààààà àààààààà."
#: ../plugins/am-project/am-properties.c:122
#: ../plugins/am-project/am-properties.c:229
@@ -941,8 +922,7 @@ msgstr "C + + ààààààà àààààààà:"
#: ../plugins/am-project/am-properties.c:134
#: ../plugins/am-project/am-properties.c:241
msgid "Common additional C++ compiler flags for all targets in this group."
-msgstr ""
-"à ààààààà àààà ààààà ààààààààà àààà àààààà ààààà C ++ ààààààà àààààààà."
+msgstr "à ààààààà àààà ààààà ààààààààà àààà àààààà ààààà C ++ ààààààà àààààààà."
#: ../plugins/am-project/am-properties.c:140
#: ../plugins/am-project/am-properties.c:247
@@ -956,8 +936,7 @@ msgstr "àààà ààààààà àààààààà:"
#: ../plugins/am-project/am-properties.c:143
#: ../plugins/am-project/am-properties.c:250
msgid "Common additional Java compiler flags for all targets in this group."
-msgstr ""
-"à ààààààà àààà ààààà ààààààààà àààà àààààà ààààà àààà ààààààà àààààààà."
+msgstr "à ààààààà àààà ààààà ààààààààà àààà àààààà ààààà àààà ààààààà àààààààà."
#: ../plugins/am-project/am-properties.c:149
#: ../plugins/am-project/am-properties.c:256
@@ -971,8 +950,7 @@ msgstr "àààà ààààààà àààààààà:"
#: ../plugins/am-project/am-properties.c:152
#: ../plugins/am-project/am-properties.c:259
msgid "Common additional Vala compiler flags for all targets in this group."
-msgstr ""
-"à ààààààà àààà ààààà ààààààààà àààà àààààà ààààà àààà ààààààà àààààààà."
+msgstr "à ààààààà àààà ààààà ààààààààà àààà àààààà ààààà àààà ààààààà àààààààà."
#: ../plugins/am-project/am-properties.c:158
#: ../plugins/am-project/am-properties.c:265
@@ -986,8 +964,7 @@ msgstr "àààààààààà ààààààà àààààà
#: ../plugins/am-project/am-properties.c:161
#: ../plugins/am-project/am-properties.c:268
msgid "Common additional Fortran compiler flags for all targets in this group."
-msgstr ""
-"à ààààààà àààà ààààà ààààààààà àààà àààààà ààààà àààààààààà ààààààà àààààààà."
+msgstr "à ààààààà àààà ààààà ààààààààà àààà àààààà ààààà àààààààààà ààààààà àààààààà."
#: ../plugins/am-project/am-properties.c:167
#: ../plugins/am-project/am-properties.c:274
@@ -1002,9 +979,7 @@ msgstr "ààààààààààà C ààààààà àààà
#: ../plugins/am-project/am-properties.c:277
msgid ""
"Common additional Objective C compiler flags for all targets in this group."
-msgstr ""
-"à ààààààà àààà ààààà ààààààààà àààà àààààà ààààà ààààààààààà C ààààààà "
-"àààààààà."
+msgstr "à ààààààà àààà ààààà ààààààààà àààà àààààà ààààà ààààààààààà C ààààààà àààààààà."
#: ../plugins/am-project/am-properties.c:176
#: ../plugins/am-project/am-properties.c:283
@@ -1021,8 +996,7 @@ msgid ""
"Common additional Lex or Flex lexical analyser generator flags for all "
"targets in this group."
msgstr ""
-"à ààààààà àààà ààààà ààààààààà àààà àààààà ààààà àààààà àààà àààààààà àààààà "
-"àààààà àààààààààà àààààààà "
+"à ààààààà àààà ààààà ààààààààà àààà àààààà ààààà àààààà àààà àààààààà àààààà àààààà àààààààààà àààààààà "
"àààààààà."
#: ../plugins/am-project/am-properties.c:185
@@ -1039,9 +1013,7 @@ msgstr "Yacc / àààààà àààààààà:"
msgid ""
"Common additional Yacc or Bison parser generator flags for all targets in "
"this group."
-msgstr ""
-"à ààààààà àààà ààààà ààààààààà àààà àààààà ààààà Yacc àààà àààààà ààààààà "
-"àààààààà àààààààà."
+msgstr "à ààààààà àààà ààààà ààààààààà àààà àààààà ààààà Yacc àààà àààààà ààààààà àààààààà àààààààà."
#: ../plugins/am-project/am-properties.c:194
#: ../plugins/am-project/am-properties.c:301
@@ -1051,8 +1023,7 @@ msgstr "àààààààà ààààààààààà:"
#: ../plugins/am-project/am-properties.c:197
#: ../plugins/am-project/am-properties.c:304
msgid "List of custom installation directories used by targets in this group."
-msgstr ""
-"à ààààààà àààà àààààààààà ààààààààà àààààà àààààààà ààààààààààà àààààà."
+msgstr "à ààààààà àààà àààààààààà ààààààààà àààààà àààààààà ààààààààààà àààààà."
#: ../plugins/am-project/am-properties.c:317
#: ../plugins/am-project/am-properties.c:501
@@ -1090,8 +1061,7 @@ msgstr "àààààààààààà àààààààààà:"
msgid ""
"It has to be a standard directory or a custom one defined in group "
"properties."
-msgstr ""
-"ààà àà ààààààààà àààààààààà àààà àààà ààààà àà ààààààààààà àààààà àà àààààà."
+msgstr "ààà àà ààààààààà àààààààààà àààà àààà ààààà àà ààààààààààà àààààà àà àààààà."
#: ../plugins/am-project/am-properties.c:339
#: ../plugins/am-project/am-properties.c:523
@@ -1174,9 +1144,7 @@ msgstr "à ààààààààààà àààà ààààà à
#: ../plugins/am-project/am-properties.c:955
msgid ""
"Additional Lex or Flex lexical analyser generator flags for this target."
-msgstr ""
-"à ààààààààààà àààà ààààà àààààà àààà àààààààà àààààà àààààà àààààààààà "
-"àààààààà àààààààà."
+msgstr "à ààààààààààà àààà ààààà àààààà àààà àààààààà àààààà àààààà àààààààààà àààààààà àààààààà."
#: ../plugins/am-project/am-properties.c:438
#: ../plugins/am-project/am-properties.c:613
@@ -1239,8 +1207,7 @@ msgstr "ààààà ààààà àààà ààààà ààà
#: ../plugins/am-project/am-properties.c:1103
#: ../plugins/am-project/am-properties.c:1177
msgid "Build this target only when running automatic tests."
-msgstr ""
-"ààààààààà àààààààà àààààààààà àààààààààà ààààààà à ààààààààààà ààààààààààà."
+msgstr "ààààààààà àààààààà àààààààààà àààààààààà ààààààà à ààààààààààà ààààààààààà."
#: ../plugins/am-project/am-properties.c:473
#: ../plugins/am-project/am-properties.c:648
@@ -1262,9 +1229,7 @@ msgstr "àààààà ààààààà:"
msgid ""
"Do not rename the target with an optional prefix, used to avoid overwritting "
"system program. "
-msgstr ""
-"ààà àààààà ààààààà àààààààààà àààààààààààààà ààààààààà àà àààààà àààààà, àà "
-"àààààà àààà àààà."
+msgstr "ààà àààààà ààààààà àààààààààà àààààààààààààà ààààààààà àà àààààà àààààà, àà àààààà àààà àààà."
#: ../plugins/am-project/am-properties.c:483
#: ../plugins/am-project/am-properties.c:658
@@ -1286,10 +1251,8 @@ msgid ""
"program subdir/app installed in bin directory it will be installed in bin/"
"subdir/app not in bin/app."
msgstr ""
-"ààà àààààààààààà àààà ààààààà àààààà àààààà àààààà. àààà àààà àààààààààààà "
-"àààààààààààà àà àààààààààà "
-"subdir / app àààà àààààà àààààà ààà àààà àààà / app àà bin / subdir / app "
-"àààààààààà "
+"ààà àààààààààààà àààà ààààààà àààààà àààààà àààààà. àààà àààà àààààààààààà àààààààààààà àà àààààààààà "
+"subdir / app àààà àààààà àààààà ààà àààà àààà / app àà bin / subdir / app àààààààààà "
"ààààààààà."
#: ../plugins/am-project/am-properties.c:529
@@ -1307,35 +1270,35 @@ msgid ""
"Section where are installed the man pages. Valid section names are the "
"digits â0â through â9â, and the letters âlâ and ânâ. "
msgstr ""
-"àààààà àààààà ààààààààà ààààà àààààà. àààààààààà ààààà àààààà àààààà ''9 "
-"àààààà' '0 àààààà, ààààà "
+"àààààà àààààà ààààààààà ààààà àààààà. àààààààààà ààààà àààààà àààààà ''9 àààààà' '0 àààààà, ààààà "
"àààààààà 'ààà' ààààà 'n'."
#: ../plugins/am-project/amp-source.c:97
msgid "Source file must be a regular file, not a directory"
msgstr "ààààààà àààà ààààà àààààà àààà àààààààààà, ààààààààà àààà"
-#: ../plugins/am-project/amp-target.c:339
+#: ../plugins/am-project/amp-target.c:342
+msgid "Target parent is not a valid group"
+msgstr "àààààààà ààààààà àà àààààààààà ààààà ààààà àààà "
+
+#: ../plugins/am-project/amp-target.c:352
msgid "Please specify target name"
msgstr "àààààà àààààààà àààààà àààààààà"
-#: ../plugins/am-project/amp-target.c:353
+#: ../plugins/am-project/amp-target.c:366
msgid ""
"Target name can only contain alphanumeric, '_', '-', '/' or '.' characters"
-msgstr ""
-"àààààààà àààà ààààààààà, àààààà ,'_', '-', '/' àààà '.' àà ààààààà ààààà "
-"àààààà"
+msgstr "àààààààà àààà ààààààààà, àààààà ,'_', '-', '/' àààà '.' àà ààààààà ààààà àààààà"
-#: ../plugins/am-project/amp-target.c:368
+#: ../plugins/am-project/amp-target.c:381
msgid "Shared library target name must be of the form 'libxxx.la'"
-msgstr ""
-"ààààààààà àààààààà àààààààà àààà , àààààààààà 'libxxx.la' àààààààà àààààà"
+msgstr "ààààààààà àààààààà àààààààà àààà , àààààààààà 'libxxx.la' àààààààà àààààà"
-#: ../plugins/am-project/amp-target.c:377
+#: ../plugins/am-project/amp-target.c:390
msgid "Static library target name must be of the form 'libxxx.a'"
msgstr "ààààà àààààààà àààààààà àààà àààààààààà 'libxxx.la' àààààààà àààààà"
-#: ../plugins/am-project/amp-target.c:385
+#: ../plugins/am-project/amp-target.c:398
msgid "Module target name must be of the form 'xxx.la'"
msgstr "àààààààà àààààààà àààà ààààà 'xxx.la' ààààààà ààààààà"
@@ -1436,8 +1399,7 @@ msgid ""
"Before using this new configuration, the default one needs to be removed. Do "
"you want to do that ?"
msgstr ""
-"à ààààà àààààààààààà àààà ààààà, àààààààààà àààà àààààà ààààààààààà ààààà "
-"àààààà.àààààà àààà "
+"à ààààà àààààààààààà àààà ààààà, àààààààààà àààà àààààà ààààààààààà ààààà àààààà.àààààà àààà "
"àààààààààààààààààààààà?"
#: ../plugins/build-basic-autotools/build.c:530
@@ -1449,9 +1411,7 @@ msgstr "ààààààààààààààà ààààà ààà
#: ../plugins/build-basic-autotools/build.c:852
#, c-format
msgid "Cannot compile \"%s\": No compile rule defined for this file type."
-msgstr ""
-"\"%s\": ààààààààààààààààà.à àààààà àààààà ààààààà ààààààà "
-"àààààààààààààààààààààààà"
+msgstr "\"%s\": ààààààààààààààààà.à àààààà àààààà ààààààà ààààààà àààààààààààààààààààààààà"
#: ../plugins/build-basic-autotools/build.c:1014
#, c-format
@@ -1531,13 +1491,10 @@ msgid ""
"quoted command. You can use %% to get a \"%\" character. A typical value is "
"\"sudo %s\" or \"su -c %q\"."
msgstr ""
-"ààààà ààààà \"%s\" àààà \"%q\" àà àààààààààààà. ààà ààààààà àààààààààààààà "
-"àààààààààà ààààààààà "
-"ààààààààààààààààà, àààààààà \"make install\". %s àààààà àààààààà àààààà "
-"ààààààà ààààààààà "
-"ààààààààààààààààà %q àààààà àààààà ààààààààà ààààààààààààààààà. àààà \"%s\" "
-"ààààààààà àààààààà "
-"%% àààààààààààààà. ààààààààà \"sudo %s\" àààà \"su -c %q\"."
+"ààààà ààààà \"%s\" àààà \"%q\" àà àààààààààààà. ààà ààààààà àààààààààààààà àààààààààà "
+"ààààààààà ààààààààààààààààà, àààààààà \"make install\". %s àààààà àààààààà àààààà ààààààà "
+"ààààààààà ààààààààààààààààà %q àààààà àààààà ààààààààà ààààààààààààààààà. àààà \"%s\" "
+"ààààààààà àààààààà %% àààààààààààààà. ààààààààà \"sudo %s\" àààà \"su -c %q\"."
#. The translations should match that of 'make' program. Both strings uses
#. * pearl regular expression
@@ -1740,8 +1697,7 @@ msgstr "à àààààààà ààààà àààààà"
#: ../plugins/build-basic-autotools/plugin.c:1704
msgid ""
"Clean project (distclean) and remove configuration directory if possible"
-msgstr ""
-"àààààààààà à àààààààààààà ààààà àààààà ààààà à àààààà ààààààààààà àààààààààà"
+msgstr "àààààààààà à àààààààààààà ààààà àààààà ààààà à àààààà ààààààààààà àààààààààà"
#: ../plugins/build-basic-autotools/plugin.c:1717
#: ../plugins/build-basic-autotools/plugin.c:1745
@@ -2053,8 +2009,7 @@ msgid ""
"Could not find autogen version 5; please install the autogen package. You "
"can get it from http://autogen.sourceforge.net."
msgstr ""
-"ààààààà 5à àààààà àààààààààààà; àààààà ààààààà àààààààà àà ààààààààààà."
-"http://autogen."
+"ààààààà 5à àààààà àààààààààààà; àààààà ààààààà àààààààà àà ààààààààààà.http://autogen."
"sourceforge.net ààààà àààààààà "
#: ../plugins/class-gen/plugin.c:252 ../plugins/class-gen/plugin.c:449
@@ -2144,8 +2099,7 @@ msgid ""
"The project needs to be reconfigured after enabling this option. Please run "
"Build->Configure!"
msgstr ""
-"à ààà àààààààààà ààààààààà àààààà , àààààààààà àààààààààà ààààà àààààà.àààààà "
-"Build->Configure "
+"à ààà àààààààààà ààààààààà àààààà , àààààààààà àààààààààà ààààà àààààà.àààààà Build->Configure "
"ààààààààà àààààà"
#: ../plugins/code-analyzer/code-analyzer.ui.h:4
@@ -2165,8 +2119,7 @@ msgid ""
"Couldn't find clang analyzer, please check if it is installed and if the "
"paths are configured correctly in the preferences"
msgstr ""
-"ààààààà àààààààà àààà àà àààààààààààààààà, àààààà ààà ààà àààààà ààààààààà "
-"ààààààààààà ààààà àààà àààààààà "
+"ààààààà àààààààà àààà àà àààààààààààààààà, àààààà ààà ààà àààààà ààààààààà ààààààààààà ààààà àààà àààààààà "
"àààààà"
#: ../plugins/code-analyzer/plugin.c:226 ../plugins/code-analyzer/plugin.c:234
@@ -2259,8 +2212,7 @@ msgid ""
msgstr ""
"<b>Please note: </b>\n"
"\n"
-"OK ààààààà àààà àààààà ààààà ààààà CVS ààààà àààààààààààà.àààà CVS commit "
-"àààààààààààààààà CVS "
+"OK ààààààà àààà àààààà ààààà ààààà CVS ààààà àààààààààààà.àààà CVS commit àààààààààààààààà CVS "
"ààààààààààà.<b> àààà ààààààààà ààààààà!</b>"
#: ../plugins/cvs-plugin/anjuta-cvs-plugin.ui.h:20
@@ -2807,14 +2759,11 @@ msgid ""
"source code corresponding to the instructions, so some commands can perform "
"in a strange way, especially steps."
msgstr ""
-"<span weight=\"bold\" size=\"larger\"> àààà ààààà àààà àààààààààà "
-"àààààààààààà àà "
+"<span weight=\"bold\" size=\"larger\"> àààà ààààà àààà àààààààààà àààààààààààà àà "
"àààààààààà àà ààààà àà ààààààà ààààààààà àààààààààààààà? </ span>\n"
"\n"
-"àààààààààààà ààààààà ààààààààààà, àààààààà àààààààààà ààààà àà àààààààààà "
-"àààààà àààà àààààààà àààà, "
-"àààààààà àààààà àààààààà àà àààààààààà àààààààà, àààààààà àààààà ààà "
-"àààààààà."
+"àààààààààààà ààààààà ààààààààààà, àààààààà àààààààààà ààààà àà àààààààààà àààààà àààà àààààààà àààà, "
+"àààààààà àààààà àààààààà àà àààààààààà àààààààà, àààààààà àààààà ààà àààààààà."
#: ../plugins/debug-manager/anjuta-debug-manager.ui.h:55
msgid "Do not show again"
@@ -3198,9 +3147,7 @@ msgstr "ààààààààààààà àààààààà"
#: ../plugins/debug-manager/queue.c:516
#, c-format
msgid "Unable to find a debugger plugin supporting a target with %s MIME type"
-msgstr ""
-"%s MIME ààààà àà ààààààààààà àààààà ààààà àà àààààààà ààààààà àààààààà àààààà "
-"àààààà"
+msgstr "%s MIME ààààà àà ààààààààààà àààààà ààààà àà àààààààà ààààààà àààààààà àààààà àààààà"
#: ../plugins/debug-manager/registers.c:462
msgid "Register"
@@ -3497,15 +3444,15 @@ msgstr "àààààà"
msgid "API"
msgstr "API"
-#: ../plugins/dir-project/dir-project.c:135
-#: ../plugins/dir-project/dir-project.c:158
-#: ../plugins/dir-project/dir-project.c:181
+#: ../plugins/dir-project/dir-project.c:124
+#: ../plugins/dir-project/dir-project.c:147
+#: ../plugins/dir-project/dir-project.c:170
#, c-format
msgid "Missing name"
msgstr "àààààààààà àààà"
-#: ../plugins/dir-project/dir-project.c:976
-#: ../plugins/dir-project/dir-project.c:986
+#: ../plugins/dir-project/dir-project.c:990
+#: ../plugins/dir-project/dir-project.c:1000
#: ../plugins/mk-project/mk-project.c:1022
#: ../plugins/mk-project/mk-project.c:1032
#, c-format
@@ -3582,7 +3529,7 @@ msgstr ""
msgid "_Replace"
msgstr "ààààààààààààà(_R)"
-#: ../plugins/document-manager/anjuta-docman.c:1449
+#: ../plugins/document-manager/anjuta-docman.c:1448
msgid "[read-only]"
msgstr "[àààààààààààà-ààààààà]"
@@ -3975,7 +3922,7 @@ msgid "Search using regular expressions"
msgstr "àààààààà àààààààààààà ààààààààà ààààààà"
#: ../plugins/document-manager/plugin.c:305
-#: ../plugins/language-support-cpp-java/plugin.c:1333
+#: ../plugins/language-support-cpp-java/plugin.c:1411
#: ../plugins/language-support-python/plugin.c:451 ../src/anjuta-actions.h:30
msgid "_Edit"
msgstr "(_E)ààààààà"
@@ -4271,23 +4218,18 @@ msgid ""
"Search for \"%s\" reached the end and was continued at the top but no new "
"match was found."
msgstr ""
-"\"%s\" àààà ààààààààà ààààààà ààààààààà ààààà àààà àààà àààààààààà àààà ààààà "
-" àààà àààààààààà."
+"\"%s\" àààà ààààààààà ààààààà ààààààààà ààààà àààà àààà àààààààààà àààà ààààà àààà àààààààààà."
#: ../plugins/document-manager/search-box.c:580
#, c-format
msgid ""
"Search for \"%s\" reached top and was continued at the bottom but no new "
"match was found."
-msgstr ""
-"\"%s\" àààà ààààààààà àààà ààààààààà ààààà àààààà àààààààààà àààà ààààà "
-"àààààà àààààààà.àà"
+msgstr "\"%s\" àààà ààààààààà àààà ààààààààà ààààà àààààà àààààààààà àààà ààààà àààààà àààààààà.àà"
#: ../plugins/document-manager/search-box.c:922
msgid "Use the context menu of the \"Find\" icon for more search options"
-msgstr ""
-"ààààààà ààààààà àààààààà ààààà \"ààààààà\" àààààà ààààà àààààà àààààà "
-"àààààààààà"
+msgstr "ààààààà ààààààà àààààààà ààààà \"ààààààà\" àààààà ààààà àààààà àààààà àààààààààà"
#: ../plugins/document-manager/search-box.c:986
msgid "Replace"
@@ -4400,13 +4342,11 @@ msgid ""
msgstr ""
"<b> àààààààà \"% s\" </ b>.\n"
"\n"
-"à àààààààà, ààààààà àààààà, àààà à ààààà ààà ààààààààààààààà àààààààààààà "
-"àààààààààà àààà.\n"
+"à àààààààà, ààààààà àààààà, àààà à ààààà ààà ààààààààààààààà àààààààààààà àààààààààà àààà.\n"
"\n"
"MIME ààà:% s\n"
"\n"
-"àààà à ààààààà àààààààààà àààà àààààààààààà àààààà àààààà ààààààààààààà "
-"ààààààààààà."
+"àààà à ààààààà àààààààààà àààà àààààààààààà àààààà àààààà ààààààààààààà ààààààààààà."
#: ../plugins/file-loader/plugin.c:280
msgid "Open with:"
@@ -4754,9 +4694,7 @@ msgstr "àààààààààààààà ààà àààààà
#: ../plugins/gdb/debugger.c:1148
msgid "Open an executable or attach to a process to start debugging.\n"
-msgstr ""
-"àà àààààààààààààà àààààà àààà àààààààààà àààààààààààààààà àà àààààààà "
-"ààààààààààà\n"
+msgstr "àà àààààààààààààà àààààà àààà àààààààààà àààààààààààààààà àà àààààààà ààààààààààà\n"
#: ../plugins/gdb/debugger.c:1157
msgid "There was an error whilst launching the debugger.\n"
@@ -4871,9 +4809,7 @@ msgstr "àààààààà àààààààààà ààààà
#, c-format
msgid ""
"Failed to create FIFO file named %s. The program will run without a terminal."
-msgstr ""
-"%s ààà FIFO àààà àààààààààààà ààààààààà. àààààààààà ààààààààà ààààààà "
-"ààààààààà."
+msgstr "%s ààà FIFO àààà àààààààààààà ààààààààà. àààààààààà ààààààààà ààààààà ààààààààà."
#: ../plugins/gdb/plugin.c:204
msgid "Cannot start terminal for debugging."
@@ -4896,8 +4832,7 @@ msgid ""
msgstr ""
"ààààààààà ààààààà ààààà àààààààà àààààà àà àààààààààààà àààààààààààà:\n"
"% s\n"
-"àààà àààààà ààààààà ààààà ààààààààà àààà ààààààààà ààààààà ààààààààààà "
-"àààààààààààà ààààà. "
+"àààà àààààà ààààààà ààààà ààààààààà àààà ààààààààà ààààààà ààààààààààà àààààààààààà ààààà. "
"àààààà àààà ààààààààà ààààààà àààà \"ààààààààà\" ààà ààààà àààà."
#: ../plugins/gdb/preferences.c:223
@@ -5025,14 +4960,11 @@ msgstr "ààààà àààààààà àààààà àààà
msgid ""
"Whole project; Drop a file here or type a path to view a file or folder log"
msgstr ""
-"àààààà àààààààààà; ààààà àà àààà àààààà àààà àà àààà àààà ààààààà àààà "
-"àààààààààààààà àà àààààà ààààà àààààà"
+"àààààà àààààààààà; ààààà àà àààà àààààà àààà àà àààà àààà ààààààà àààà àààààààààààààà àà àààààà ààààà àààààà"
#: ../plugins/git/anjuta-git.ui.h:32
msgid "Whole project; Drop a file here to view a file or folder log"
-msgstr ""
-"àààààà àààààààààà; àà àààà àààà ààààààà àààà àààààààààààààà ààààà àà àààà "
-"àààààà"
+msgstr "àààààà àààààààààà; àà àààà àààà ààààààà àààà àààààààààààààà ààààà àà àààà àààààà"
#: ../plugins/git/anjuta-git.ui.h:33
#: ../plugins/subversion/anjuta-subversion.ui.h:38
@@ -5527,8 +5459,7 @@ msgstr "ààààààààà àààààà àààààààà
#: ../plugins/git/plugin.c:271
msgid "Start a rebase operation relative to the selected remote repository"
-msgstr ""
-"ààààààààà àààààà ààààààààà ààààààààà àà àààààààààà ààààààà ààààààààààààà"
+msgstr "ààààààààà àààààà ààààààààà ààààààààà àà àààààààààà ààààààà ààààààààààààà"
#: ../plugins/git/plugin.c:278 ../plugins/git/plugin.c:446
msgid "Continue"
@@ -5796,8 +5727,7 @@ msgstr "C + + ààààà àààà àààààà àààààà
#: ../plugins/language-support-cpp-java/anjuta-language-cpp-java.plugin.in.h:2
msgid "C++ and Java support plugin for code completion, auto-indentation, etc."
-msgstr ""
-"C + + ààààà àààà àààààà, ààà-àààààààà, ààààààààà àààà àààà àààààà àààààààà"
+msgstr "C + + ààààà àààà àààààà, ààà-àààààààà, ààààààààà àààà àààà àààààà àààààààà"
#: ../plugins/language-support-cpp-java/anjuta-language-cpp-java.ui.h:1
#: ../plugins/language-support-python/python-plugin-properties.ui.h:1
@@ -5907,43 +5837,43 @@ msgstr "API àààààà (C / C + +)"
msgid "C/C++"
msgstr "C/C++"
-#: ../plugins/language-support-cpp-java/plugin.c:881
+#: ../plugins/language-support-cpp-java/plugin.c:958
msgid "Code added for widget."
msgstr "ààààààà ààààà àààà ààààààààààà."
#. ANJUTA_STOCK_AUTOINDENT,
-#: ../plugins/language-support-cpp-java/plugin.c:1339
+#: ../plugins/language-support-cpp-java/plugin.c:1417
#: ../plugins/language-support-python/plugin.c:457
msgid "Auto-Indent"
msgstr "ààà-ààààààà"
-#: ../plugins/language-support-cpp-java/plugin.c:1340
+#: ../plugins/language-support-cpp-java/plugin.c:1418
#: ../plugins/language-support-python/plugin.c:458
msgid "Auto-indent current line or selection based on indentation settings"
msgstr "àààààààà ààààààààà ààààààà àààààààà ààààà àààà ààààà ààà-ààààààààà"
-#: ../plugins/language-support-cpp-java/plugin.c:1346
+#: ../plugins/language-support-cpp-java/plugin.c:1424
msgid "Comment/Uncomment"
msgstr "ààààààà/ààààààà àààààà"
-#: ../plugins/language-support-cpp-java/plugin.c:1347
+#: ../plugins/language-support-cpp-java/plugin.c:1425
msgid "Comment or uncomment current selection"
msgstr "àààààààà ààààààà ààààààà àààààà ààà ààààà"
-#: ../plugins/language-support-cpp-java/plugin.c:1352
+#: ../plugins/language-support-cpp-java/plugin.c:1430
msgid "Swap .h/.c"
msgstr ".h àààà .c ààààààààààà"
-#: ../plugins/language-support-cpp-java/plugin.c:1353
+#: ../plugins/language-support-cpp-java/plugin.c:1431
msgid "Swap C header and source files"
msgstr "C ààààààà ààààà ààà àààààà ààààààààààà"
-#: ../plugins/language-support-cpp-java/plugin.c:1393
+#: ../plugins/language-support-cpp-java/plugin.c:1471
msgid "C++/Java Assistance"
msgstr "C + + / àààà ààààà"
-#: ../plugins/language-support-cpp-java/plugin.c:1630
-#: ../plugins/language-support-cpp-java/plugin.c:1664
+#: ../plugins/language-support-cpp-java/plugin.c:1708
+#: ../plugins/language-support-cpp-java/plugin.c:1742
msgid "C/C++/Java/Vala"
msgstr "C / C + + / àààà / àààà"
@@ -5998,8 +5928,7 @@ msgid ""
"aren't installed. Both are required for autocompletion in python files.\n"
"Please install them and check the python path in the preferences."
msgstr ""
-"àààààà àààààà ààààà àààà àààààà-àààà (http://rope.sf.net) ààààààààààà "
-"ààààààààà \n"
+"àààààà àààààà ààààà àààà àààààà-àààà (http://rope.sf.net) ààààààààààà ààààààààà \n"
"àààà. ààààà àààààà àààààà àà ààààààààà àààà ààààà.\n"
"àààààà ààààààààà àààààà ààààà àààààààààààà àà ààààààà àààààà ààààà àààààààà"
@@ -6325,8 +6254,7 @@ msgid ""
"A file named \"%s\" cannot be written: %s. Check if you have write access to "
"the project directory."
msgstr ""
-"\"%s\" ààà àà ààààà ààààààà àààààà àààà:%s. àààà àààààààààà àààààààààà àààààà "
-"àààààààà ààààà àààà "
+"\"%s\" ààà àà ààààà ààààààà àààààà àààà:%s. àààà àààààààààà àààààààààà àààààà àààààààà ààààà àààà "
"àààààààààààà."
#: ../plugins/project-import/plugin.c:282
@@ -6344,8 +6272,7 @@ msgid ""
"Could not find a valid project backend for the given directory (%s). Please "
"select a different directory, or try upgrading to a newer version of Anjuta."
msgstr ""
-"àààààà àààààààààà (% s) àààà àààààààààààà àààààààààà àààààà àààààààà àààààà "
-"àààà. àààà àààààààààà "
+"àààààà àààààààààà (% s) àààà àààààààààààà àààààààààà àààààà àààààààà àààààà àààà. àààà àààààààààà "
"àààààààà, àààà Anjuta ààààà ààààà ààààààààà àààààààààààà ààààààààààààà."
#: ../plugins/project-import/plugin.c:368
@@ -6749,8 +6676,7 @@ msgid ""
"Failed to parse project (the project is opened, but there will be no project "
"view) %s: %s\n"
msgstr ""
-"àààààààààà (àààààààààà àààààààààààààààà, àààà à àààààààààà àààààà ààààà)%s "
-"àààààààààà ààààààààà:%s\n"
+"àààààààààà (àààààààààà àààààààààààààààà, àààà à àààààààààà àààààà ààààà)%s àààààààààà ààààààààà:%s\n"
#: ../plugins/project-manager/plugin.c:1329
msgid "Update project viewâ"
@@ -6783,11 +6709,11 @@ msgstr "àààààààààà ààààààààààà àà
msgid "Project manager popup actions"
msgstr "àààààààààà ààààààààààà ààààààà àààààà"
-#: ../plugins/project-manager/plugin.c:2434
+#: ../plugins/project-manager/plugin.c:2441
msgid "Initializing Projectâ"
msgstr "àààààààààà ààààààààààààààà ..."
-#: ../plugins/project-manager/plugin.c:2437
+#: ../plugins/project-manager/plugin.c:2444
msgid "Project Loaded"
msgstr "àààààààààà àààààà"
@@ -6900,7 +6826,7 @@ msgstr "<àà àààààààà àààààààààà>"
msgid "GbfProject Object"
msgstr "Gbfàààààààààà ààààààà"
-#: ../plugins/project-manager/project-model.c:745
+#: ../plugins/project-manager/project-model.c:747
msgid "No project loaded"
msgstr "à ààààààààà àààà àààààà"
@@ -6965,10 +6891,8 @@ msgid ""
"\"#$:%%+, = ^_`~\". In addition you cannot have a leading dash. Please fix "
"it."
msgstr ""
-"ààààààà \"% s\" ààààààà àààààààà, àààààà àààà à ààààààà àààààààà ààààààà "
-"ààààà \"# $:%% +, = @ ^ "
-"_` ~. \". àààààà àààà àà àààààà Dash ààààààààà. àààààà àààààààààààààààà "
-"àààààààà."
+"ààààààà \"% s\" ààààààà àààààààà, àààààà àààà à ààààààà àààààààà ààààààà ààààà \"# $:%% +, = @ ^ "
+"_` ~. \". àààààà àààà àà àààààà Dash ààààààààà. àààààà àààààààààààààààà àààààààà."
#: ../plugins/project-wizard/druid.c:691
#, c-format
@@ -6977,10 +6901,8 @@ msgid ""
"$:%%+, = ^_`~\" or directory separators. In addition you cannot have a "
"leading dash. Please fix it."
msgstr ""
-"ààààààà \"% s\" ààààààà àààààààà, àààààà, ààààà ààààààààà ààààà àààà ààààà "
-"\"# $:%% +, = @ ^ "
-"_` ~. \"àààà àààààààààà àààààààààà. àààààà àààà àà àààààà Dash ààààààààà. "
-"àààààà àààààààààààààààà "
+"ààààààà \"% s\" ààààààà àààààààà, àààààà, ààààà ààààààààà ààààà àààà ààààà \"# $:%% +, = @ ^ "
+"_` ~. \"àààà àààààààààà àààààààààà. àààààà àààà àà àààààà Dash ààààààààà. àààààà àààààààààààààààà "
"àààààààà."
#: ../plugins/project-wizard/druid.c:696
@@ -6989,9 +6911,8 @@ msgid ""
"Field \"%s\" must contains only ASCII printable characters, no accentuated "
"characters by example. Please fix it."
msgstr ""
-"àààààààà \"%s\" ààààààààààà ASCII àààààààà ààààààà àààààààààààà, ààààààààà "
-"àààààààà àààààààà. àààààà "
-"àààààà ààààààààààà."
+"àààààààà \"%s\" ààààààààààà ASCII àààààààà ààààààà àààààààààààà, ààààààààà àààààààà àààààààà. "
+"àààààà àààààà ààààààààààà."
#: ../plugins/project-wizard/druid.c:701
#, c-format
@@ -7004,15 +6925,13 @@ msgid ""
"Directory \"%s\" is not empty. Project creation could fail if some files "
"cannot be written. Do you want to continue?"
msgstr ""
-"ààààààààà \"% s\" àààà àààà. àààààà ààààààà ààààààà àààààà àààà àààà "
-"àààààààààà àààààà ààààà àààààà. "
+"ààààààààà \"% s\" àààà àààà. àààààà ààààààà ààààààà àààààà àààà àààà àààààààààà àààààà ààààà àààààà. "
"àààà ààààààààààààà àààà àààààààààààààà?"
#: ../plugins/project-wizard/druid.c:730
#, c-format
msgid "File \"%s\" already exists. Do you want to overwrite it?"
-msgstr ""
-"àààà \"% s\" àààààààà àààà. àààà ààà ààààààààà ààààààà àààà àààààààààààààà?"
+msgstr "àààà \"% s\" àààààààà àààà. àààà ààà ààààààààà ààààààà àààà àààààààààààààà?"
#: ../plugins/project-wizard/druid.c:763
msgid "Invalid entry"
@@ -7046,10 +6965,8 @@ msgid ""
"project are missing. Please make sure they are installed properly before "
"generating the project.\n"
msgstr ""
-"à àààààààààà àààààààààààààà ààààààà àààààà àààààààà àààààààààààà àààà "
-"ààààààààà àààààààààà àààà "
-"ààààààààààà. àààà àààààààààà àààààààà ààààà ààààà àààààààààààà "
-"àààààààààààààààà.\n"
+"à àààààààààà àààààààààààààà ààààààà àààààà àààààààà àààààààààààà àààà ààààààààà àààààààààà àààà "
+"ààààààààààà. àààà àààààààààà àààààààà ààààà ààààà àààààààààààà àààààààààààààààà.\n"
#: ../plugins/project-wizard/druid.c:971
msgid "Install missing packages"
@@ -7067,14 +6984,10 @@ msgid ""
"dev\" or \"-devel\" suffix in package names and can be found by searching in "
"your Application Manager."
msgstr ""
-"àààààààààà àààààààààààà ààààààààà àààààà àààààà àààààààààà àààààà ààààààà "
-"ààààà àà àààààààààà ààààààààààà àà "
-"àààà ààààààààààà. ààà àààààà, ààààààààà àààààààààà àà àààààà ààààààààààà "
-"ààààààààà àààààà ààààààà "
-"àààààààààààààà ààààààà àààààààà àààààààààà àààààà. ààà ààààààààà àààààààà "
-"àààààà àà \"-dev\" àààà \"-"
-"devel\" àààààààà àà àààà ààààà àà àààààààààà ààààààààààà àà àààààààà àààààà "
-"àààààààà."
+"àààààààààà àààààààààààà ààààààààà àààààà àààààà àààààààààà àààààà ààààààà ààààà àà àààààààààà ààààààààààà àà "
+"àààà ààààààààààà. ààà àààààà, ààààààààà àààààààààà àà àààààà ààààààààààà ààààààààà àààààà ààààààà "
+"àààààààààààààà ààààààà àààààààà àààààààààà àààààà. ààà ààààààààà àààààààà àààààà àà \"-dev\" àààà \"-"
+"devel\" àààààààà àà àààà ààààà àà àààààààààà ààààààààààà àà àààààààà àààààà àààààààà."
#: ../plugins/project-wizard/druid.c:991
msgid "Missing components"
@@ -7230,8 +7143,7 @@ msgid ""
"Project name must not contain spaces, because it will be the name of the "
"project build target (executable, library etc.)"
msgstr ""
-"ààà àààààààààà àààààà àààààààà ààààà àààà (àààààààààààààà, àààààààà "
-"ààààààààà) ààààààà àààààààà àààààààààà "
+"ààà àààààààààà àààààà àààààààà ààààà àààà (àààààààààààààà, àààààààà ààààààààà) ààààààà àààààààà àààààààààà "
"àààà, ààààààà ààààà àààààààà"
#: ../plugins/project-wizard/templates/anjuta-plugin.wiz.in.h:7
@@ -7356,8 +7268,7 @@ msgid ""
"Comma separated, other plugins that this plugin depends on. It could be "
"either primary interface name or plugin location (library:class)"
msgstr ""
-"à àààààààà ààààààà ààààààà ààà, ààà àààààààààà àààààààà. àààà (àààààààà:ààààà "
-") ààà àààààààà ààààààààà "
+"à àààààààà ààààààà ààààààà ààà, ààà àààààààààà àààààààà. àààà (àààààààà:ààààà ) ààà àààààààà ààààààààà "
"àààà àààà àààààààà àààààààààà ààààà àààààààà"
#: ../plugins/project-wizard/templates/anjuta-plugin.wiz.in.h:21
@@ -7461,8 +7372,7 @@ msgstr "C++ àààààà ààààààààà:"
#: ../plugins/project-wizard/templates/xlib-dock.wiz.in.h:14
#: ../plugins/project-wizard/templates/xlib.wiz.in.h:14
msgid "Adds C++ support to the project so that C++ source files can be built"
-msgstr ""
-"C + + ààà àààààà àààààààààà àààààà àààààààààà àà C + + àààààààà ààààààààààà"
+msgstr "C + + ààà àààààà àààààààààà àààààà àààààààààà àà C + + àààààààà ààààààààààà"
#: ../plugins/project-wizard/templates/anjuta-plugin.wiz.in.h:32
#: ../plugins/project-wizard/templates/cpp.wiz.in.h:20
@@ -7587,8 +7497,7 @@ msgstr "àààààààààà ààààààà àààààà
#: ../plugins/project-wizard/templates/xlib-dock.wiz.in.h:18
#: ../plugins/project-wizard/templates/xlib.wiz.in.h:18
msgid "Adds support for building shared libraries in your project"
-msgstr ""
-"àà àààààààààà àà àààààààààà ààààààààààà àààààààààààààà àààààààà ààààààààààà"
+msgstr "àà àààààààààà àà àààààààààà ààààààààààà àààààààààààààà àààààààà ààààààààààà"
#: ../plugins/project-wizard/templates/cpp.wiz.in.h:15
#: ../plugins/project-wizard/templates/gcj.wiz.in.h:17
@@ -7624,9 +7533,7 @@ msgstr "ààààààààààààà ààààààààà:"
msgid ""
"Adds support for internationalization so that your project can have "
"translations in different languages"
-msgstr ""
-"àà àààààààààà ààààà àààààà ààààààààà àààààà àààà ààààààààààààà àààààààà "
-"ààààààààààà"
+msgstr "àà àààààààààà ààààà àààààà ààààààààà àààààà àààà ààààààààààààà àààààààà ààààààààààà"
#: ../plugins/project-wizard/templates/django.wiz.in.h:1
msgid "Django Project"
@@ -7647,8 +7554,7 @@ msgstr "àààààà gcj ààààààà àààà"
#: ../plugins/project-wizard/templates/gcj.wiz.in.h:2
msgid ""
"A generic natively compiled java project using the GNU Java Compiler (gcj)"
-msgstr ""
-"GNU àààà àààààààà (gcj) ààààààààà àà àààààà ààà ààààààà àààà àààààààààà"
+msgstr "GNU àààà àààààààà (gcj) ààààààààà àà àààààà ààà ààààààà àààà àààààààààà"
#: ../plugins/project-wizard/templates/gcj.wiz.in.h:7
#: ../plugins/project-wizard/templates/java.wiz.in.h:7
@@ -7693,10 +7599,8 @@ msgid ""
"email address."
msgstr ""
"Uuid àààààà àà àààààààààà ààààààààà-àààààà ààààààààà.\n"
-"ààà ààààààà àààààààà ààààààààâàà ààààààà(foo bar extensions example "
-"com), ààààà\n"
-"àààààààààà ààààààà àààààààà ààààààààààà, ààààààààààà uuid àààààà àà "
-"ààààààà àààààààà\n"
+"ààà ààààààà àààààààà ààààààààâàà ààààààà(foo bar extensions example com), ààààà\n"
+"àààààààààà ààààààà àààààààà ààààààààààà, ààààààààààà uuid àààààà àà ààààààà àààààààà\n"
"àà àààààààà àààààà."
#: ../plugins/project-wizard/templates/gnome-shell-extension.wiz.in.h:21
@@ -7710,8 +7614,7 @@ msgstr "àààààà àààà àààààààà:"
#: ../plugins/project-wizard/templates/gnome-shell-extension.wiz.in.h:23
msgid ""
"Comma-separated list of gnome-shell version your plugin is compatible with"
-msgstr ""
-"àà ààààààà àààààààà àààààààààà àààààà-ààààààààà àààààà-àààà ààààààà àààààà"
+msgstr "àà ààààààà àààààààà àààààààààà àààààà-ààààààààà àààààà-àààà ààààààà àààààà"
#: ../plugins/project-wizard/templates/gtkapplication.wiz.in.h:1
msgid "GTK+ (Application)"
@@ -7735,8 +7638,7 @@ msgstr "Gtk-ààààà ààààààà ààààààààà:"
#: ../plugins/project-wizard/templates/java.wiz.in.h:18
#: ../plugins/project-wizard/templates/python.wiz.in.h:16
msgid "gtk-doc is used to compile API documentations for GObject based classes"
-msgstr ""
-"gtk-ààààà GObject àààààà ààààààà àààà API àààààààààààà ààààààà àààààààààààà"
+msgstr "gtk-ààààà GObject àààààà ààààààà àààà API àààààààààààà ààààààà àààààààààààà"
#: ../plugins/project-wizard/templates/gtkapplication.wiz.in.h:23
#: ../plugins/project-wizard/templates/gtkmm.wiz.in.h:21
@@ -7755,8 +7657,7 @@ msgid ""
"Use GtkBuilder to create the user-interface in a graphical way and load it "
"from xml files at runtime"
msgstr ""
-"ààààààààà àààààà àààààààààààààààààààààà àààààààààà ààààà àààààààààà àààààà "
-"xml àààààà ààààà àààà "
+"ààààààààà àààààà àààààààààààààààààààààà àààààààààà ààààà àààààààààà àààààà xml àààààà ààààà àààà "
"gtkààààààà ààààààààààà"
#: ../plugins/project-wizard/templates/gtkapplication.wiz.in.h:26
@@ -7773,8 +7674,7 @@ msgid ""
"the required version of the package. For example, 'libgnomeui-2.0' or "
"'libgnomeui-2.0 >= 2.2.0'"
msgstr ""
-"àà àààààààààà ààààààààà àà àààààààà àààà ààààààà. àààà àààà àààààààà ààààà "
-"ààààààà ààààààà ààààà àààààààààààà "
+"àà àààààààààà ààààààààà àà àààààààà àààà ààààààà. àààà àààà àààààààà ààààà ààààààà ààààààà ààààà àààààààààààà "
"àààààààà. àààààààà, 'libgnomeui-2.0' àààà 'libgnomeui-2.0> = 2.2.0'"
#: ../plugins/project-wizard/templates/gtkmm.wiz.in.h:1
@@ -8138,7 +8038,6 @@ msgstr "ààààà ààààà"
#: ../plugins/snippets-manager/snippets-browser.c:193
#: ../plugins/snippets-manager/snippets-manager-preferences.ui.h:1
-#| msgid "Add Snippet â"
msgid "Add snippet"
msgstr "àààààààààà àààààà ..."
@@ -8148,7 +8047,6 @@ msgid "Remove selected snippet"
msgstr "àààààààààà ààààààààààâàà àààààààà"
#: ../plugins/snippets-manager/snippets-browser.c:205
-#| msgid "Paste the content of clipboard at the current position"
msgid "Insert snippet into editor at current cursor position"
msgstr "ààààààâ àààà àààààà àààààààà àààààà àààà ààààààààààâàà ààààààààà"
@@ -8176,8 +8074,7 @@ msgstr "àààààà ààààà"
#: ../plugins/snippets-manager/snippets-editor.c:48
msgid "<b>Error:</b> You must choose at least one language for the snippet!"
-msgstr ""
-"<b> àààà: </ b> àààà àààààààààààà àààà ààààà àà ààààà ààààà àààààààààà!"
+msgstr "<b> àààà: </ b> àààà àààààààààààà àààà ààààà àà ààààà ààààà àààààààààà!"
#: ../plugins/snippets-manager/snippets-editor.c:49
msgid ""
@@ -8188,13 +8085,11 @@ msgstr "<b> àààà: </ b> ààààààààà àà àààà
msgid ""
"<b>Error:</b> The trigger key can only contain alphanumeric characters and "
"_ !"
-msgstr ""
-"<b> àààà: </ b> ààààààààà àà àààààààààà ààààààà ààààà _ ààààààà ààààà ààààààà!"
+msgstr "<b> àààà: </ b> ààààààààà àà àààààààààà ààààààà ààààà _ ààààààà ààààà ààààààà!"
#: ../plugins/snippets-manager/snippets-editor.c:51
msgid "<b>Error:</b> You haven't entered a trigger key for the snippet!"
-msgstr ""
-"<b> àààà: </ b> àààà àààààààààààà ààààààààààà ààààà àà ààààà ààààààààà!"
+msgstr "<b> àààà: </ b> àààà àààààààààààà ààààààààààà ààààà àà ààààà ààààààààà!"
#: ../plugins/snippets-manager/snippets-editor.ui.h:1
msgid "Snippet Name:"
@@ -8235,8 +8130,7 @@ msgid ""
"snippet.\n"
"<b>Warning: Must be unique per language. </b>"
msgstr ""
-"ààààààààà àà àààààààààààà ààààà ààààà àààààààààà àààààààààààà. àà àààààààà "
-"àààààà àà \"àààààà ààààààààà\" "
+"ààààààààà àà àààààààààààà ààààà ààààà àààààààààà àààààààààààà. àà àààààààà àààààà àà \"àààààà ààààààààà\" "
"ààààààààà àààààà àààààà àà ààààààààà àà, ààààà àààààà.\n"
"<b> àààààààà: ààà ààààà àààààààà àààààà. </ b>"
@@ -8257,8 +8151,7 @@ msgid ""
"Keywords are used for better searching of the snippets. They should be "
"relevant to the snippet content. Type them separated by a single space."
msgstr ""
-"ààààààààà ààààààààààààà àààà ààààààà ààààà àààààààààààà. àààà àààààààààààà "
-"ààààààààà àààààààààà àààààà. "
+"ààààààààà ààààààààààààà àààà ààààààà ààààà àààààààààààà. àààà àààààààààààà ààààààààà àààààààààà àààààà. "
"àààààà ààà àààààà àààà ààààà àààààà."
#: ../plugins/snippets-manager/snippets-editor.ui.h:15
@@ -8426,7 +8319,7 @@ msgstr "àààààà ààààààààà àààààààà"
msgid "GtkSourceView Editor"
msgstr "Gtk àààà àààààààààààà àààààà"
-#: ../plugins/sourceview/sourceview.c:568
+#: ../plugins/sourceview/sourceview.c:567
#, c-format
msgid ""
"The file \"%s\" on the disk is more recent than the current buffer.\n"
@@ -8435,7 +8328,7 @@ msgstr ""
"àààààààà ààààà \"% s\" àààààààà àààà àààà ààààà àààà.\n"
"àààà ààààà àààà àààààààààààààààààà?"
-#: ../plugins/sourceview/sourceview.c:600
+#: ../plugins/sourceview/sourceview.c:599
#, c-format
msgid ""
"The file \"%s\" has been deleted on the disk.\n"
@@ -8445,18 +8338,18 @@ msgstr ""
"àààà àààààà ààààààààààààààààààààà?"
#. Could not open <filename>: <error message>
-#: ../plugins/sourceview/sourceview.c:633
+#: ../plugins/sourceview/sourceview.c:632
#, c-format
msgid "Could not open %s: %s"
msgstr "%s àààààà àààààà àààààà:% s"
-#: ../plugins/sourceview/sourceview.c:687
+#: ../plugins/sourceview/sourceview.c:686
#, c-format
msgid "The file \"%s\" is read-only! Edit anyway?"
msgstr "àààà \"% s\" ààààà-ààààààà àààà! àààààààà ààààààààààà?"
#. Could not open <filename>: <error message>
-#: ../plugins/sourceview/sourceview.c:749
+#: ../plugins/sourceview/sourceview.c:748
#, c-format
msgid "Could not save %s: %s"
msgstr "%s: %s àààà àààààà"
@@ -9102,9 +8995,7 @@ msgstr "àààààààààà ààààà àààààà àà
msgid ""
"This option means that the global system packages will be scanned "
"simultaneously with the project's ones"
-msgstr ""
-"à ààààààà àààààà ààààààà ààààààààààà àààààààààà àààààà àààà àààààààà àààààà "
-"ààààààààààà ààààà"
+msgstr "à ààààààà àààààà ààààààà ààààààààààà àààààààààà àààààà àààà àààààààà àààààà ààààààààààà ààààà"
#: ../plugins/symbol-db/anjuta-symbol-db.ui.h:3
msgid "Automatically update symbols without saving file"
@@ -9115,8 +9006,7 @@ msgid ""
"Automatically update the file's symbols without saving. The update occurs "
"after 10 seconds without keypresses by the user."
msgstr ""
-"àààààààààààà àààà àààààààààà àààà ààààà àààààààà ààààààààà. àààààà ààààà "
-"àààààà àà ààààààààà ààààààà "
+"àààààààààààà àààà àààààààààà àààà ààààà àààààààà ààààààààà. àààààà ààààà àààààà àà ààààààààà ààààààà "
"10 àààààà àààààà ààààààààààà."
#: ../plugins/symbol-db/plugin.c:331
@@ -9352,8 +9242,7 @@ msgid ""
"The shortcut is already used by another component in Anjuta. Do you want to "
"keep it anyway?"
msgstr ""
-"ààààà àààààààààà ààààà àà àààà àààà àààààà àààààààà àààààààààààà. àààà "
-"àààààààààààà ààààààà àààà "
+"ààààà àààààààààà ààààà àà àààà àààà àààààà àààààààà àààààààààààà. àààà àààààààààààà ààààààà àààà "
"àààààààààààààà?"
#: ../plugins/tools/editor.c:910
@@ -9538,8 +9427,7 @@ msgstr "àààààààààà ààààààààààà àà
#: ../plugins/tools/variable.c:99
msgid "Selected full file name without extension in the project manager plugin"
-msgstr ""
-"àààààààààà ààààààààààà àààààààà àà ààààààààà ààààààà àààà àààààà àààà ààààà "
+msgstr "àààààààààà ààààààààààà àààààààà àà ààààààààà ààààààà àààà àààààà àààà ààààà "
#: ../plugins/tools/variable.c:100
msgid "Selected file name in the project manager plugin"
@@ -9635,8 +9523,7 @@ msgstr "(_L)àààà ààààà àààà àààààààà"
#: ../src/anjuta-actions.h:52
msgid "Lock the current dock layout so that widgets cannot be moved"
-msgstr ""
-"àààààààààà àààààààà àààààà àààà àààà àààààààà àààà ààààààà àààà àààààààà"
+msgstr "àààààààààà àààààààà àààààà àààà àààà àààààààà àààà ààààààà àààà àààààààà"
#: ../src/anjuta-actions.h:55
msgid "_Toolbar"
@@ -9747,9 +9634,7 @@ msgstr "àààààààà ààà àààààààà"
#: ../src/main.c:81
msgid "Start a new instance and do not open the file in an existing instance"
-msgstr ""
-"àà ààààà àààààààà ààààààààààààà ààààà àààààààà àààà àààààààà àà àààà "
-"ààààààààààà àààà"
+msgstr "àà ààààà àààààààà ààààààààààààà ààààà àààààààà àààà àààààààà àà àààà ààààààààààà àààà"
#: ../src/main.c:87
msgid "Do not open last session on startup"
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]