;;; wisent-java-tags.el --- Java LALR parser for Emacs ;; Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006 David Ponce ;; Author: David Ponce ;; Maintainer: David Ponce ;; Created: 15 Dec 2001 ;; Keywords: syntax ;; X-RCS: $Id: wisent-java-tags.el,v 1.1 2007-11-26 15:12:32 michaels Exp $ ;; This file is not part of GNU Emacs. ;; This program is free software; you can redistribute it and/or ;; modify it under the terms of the GNU General Public License as ;; published by the Free Software Foundation; either version 2, or (at ;; your option) any later version. ;; This program is distributed in the hope that it will be useful, but ;; WITHOUT ANY WARRANTY; without even the implied warranty of ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ;; General Public License for more details. ;; You should have received a copy of the GNU General Public License ;; along with this program; see the file COPYING. If not, write to ;; the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, ;; Boston, MA 02110-1301, USA. ;;; Commentary: ;; ;;; History: ;; ;;; Code: (require 'semantic-wisent) (require 'wisent-java-tags-wy) (require 'semantic-java) (eval-when-compile (require 'semantic-util) (require 'semantic-ctxt) (require 'semantic-imenu) (require 'senator) (require 'document)) ;;;; ;;;; Simple parser error reporting function ;;;; (defun wisent-java-parse-error (msg) "Error reporting function called when a parse error occurs. MSG is the message string to report." ;; (let ((error-start (nth 2 wisent-input))) ;; (if (number-or-marker-p error-start) ;; (goto-char error-start))) (message msg) ;;(debug) ) ;;;; ;;;; Local context ;;;; (define-mode-local-override semantic-get-local-variables java-mode () "Get local values from a specific context. Parse the current context for `field_declaration' nonterminals to collect tags, such as local variables or prototypes. This function override `get-local-variables'." (let ((vars nil) ;; We want nothing to do with funny syntaxing while doing this. (semantic-unmatched-syntax-hook nil)) (while (not (semantic-up-context (point) 'function)) (save-excursion (forward-char 1) (setq vars (append (semantic-parse-region (point) (save-excursion (semantic-end-of-context) (point)) 'field_declaration 0 t) vars)))) vars)) ;;;; ;;;; Semantic integration of the Java LALR parser ;;;; ;;;###autoload (defun wisent-java-default-setup () "Hook run to setup Semantic in `java-mode'. Use the alternate LALR(1) parser." (wisent-java-tags-wy--install-parser) (setq ;; Lexical analysis semantic-lex-number-expression semantic-java-number-regexp semantic-lex-analyzer 'wisent-java-tags-lexer ;; Parsing semantic-tag-expand-function 'semantic-java-expand-tag ;; Environment semantic-imenu-summary-function 'semantic-format-tag-prototype imenu-create-index-function 'semantic-create-imenu-index semantic-type-relation-separator-character '(".") semantic-command-separation-character ";" document-comment-start "/**" document-comment-line-prefix " *" document-comment-end " */" ;; speedbar and imenu buckets name semantic-symbol->name-assoc-list-for-type-parts ;; in type parts '((type . "Classes") (variable . "Variables") (function . "Methods")) semantic-symbol->name-assoc-list ;; everywhere (append semantic-symbol->name-assoc-list-for-type-parts '((include . "Imports") (package . "Package"))) ;; navigation inside 'type children senator-step-at-tag-classes '(function variable) ) ;; Setup javadoc stuff (semantic-java-doc-setup)) ;;;###autoload (add-hook 'java-mode-hook 'wisent-java-default-setup) (provide 'wisent-java-tags) ;;; wisent-java-tags.el ends here