Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
menhir
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
12
Issues
12
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
POTTIER Francois
menhir
Commits
e2177ee0
Commit
e2177ee0
authored
Oct 14, 2015
by
POTTIER Francois
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removed all $Id headers that were still around.
parent
49ded779
Changes
18
Hide whitespace changes
Inline
Side-by-side
Showing
18 changed files
with
3 additions
and
31 deletions
+3
-31
src/action.ml
src/action.ml
+0
-2
src/action.mli
src/action.mli
+0
-2
src/concreteSyntax.mli
src/concreteSyntax.mli
+0
-1
src/infiniteArray.ml
src/infiniteArray.ml
+0
-2
src/infiniteArray.mli
src/infiniteArray.mli
+0
-2
src/listMonad.mli
src/listMonad.mli
+0
-2
src/misc.ml
src/misc.ml
+3
-0
src/nonTerminalDefinitionInlining.ml
src/nonTerminalDefinitionInlining.ml
+0
-1
src/nonTerminalDefinitionInlining.mli
src/nonTerminalDefinitionInlining.mli
+0
-2
src/parameterizedGrammar.mli
src/parameterizedGrammar.mli
+0
-2
src/parameters.ml
src/parameters.ml
+0
-2
src/partialGrammar.ml
src/partialGrammar.ml
+0
-1
src/partialGrammar.mli
src/partialGrammar.mli
+0
-2
src/positions.ml
src/positions.ml
+0
-2
src/positions.mli
src/positions.mli
+0
-2
src/stretch.mli
src/stretch.mli
+0
-2
src/unionFind.ml
src/unionFind.ml
+0
-2
src/unionFind.mli
src/unionFind.mli
+0
-2
No files found.
src/action.ml
View file @
e2177ee0
(* $Id: action.ml,v 1.10 2006/06/26 09:41:33 regisgia Exp $ *)
open
Keyword
open
Keyword
type
t
=
type
t
=
...
...
src/action.mli
View file @
e2177ee0
(* $Id: action.mli,v 1.8 2006/06/26 09:41:33 regisgia Exp $ *)
(** Semantic action's type. *)
(** Semantic action's type. *)
type
t
type
t
...
...
src/concreteSyntax.mli
View file @
e2177ee0
(* $Id: concreteSyntax.mli,v 1.3 2005/12/01 16:20:06 regisgia Exp $ *)
type
grammar
=
type
grammar
=
{
{
pg_filename
:
Syntax
.
filename
;
pg_filename
:
Syntax
.
filename
;
...
...
src/infiniteArray.ml
View file @
e2177ee0
(* $Id: infiniteArray.ml,v 1.6 2007/09/10 21:09:37 fpottier Exp $ *)
(** This module implements infinite arrays, that is, arrays that grow
(** This module implements infinite arrays, that is, arrays that grow
transparently upon demand. *)
transparently upon demand. *)
...
...
src/infiniteArray.mli
View file @
e2177ee0
(* $Id: infiniteArray.mli,v 1.5 2007/09/10 21:09:37 fpottier Exp $ *)
(** This module implements infinite arrays. **)
(** This module implements infinite arrays. **)
type
'
a
t
type
'
a
t
...
...
src/listMonad.mli
View file @
e2177ee0
(* $Id: listMonad.mli,v 1.2 2005/12/01 16:20:06 regisgia Exp $ *)
(** Monad type which represents a list of results. *)
(** Monad type which represents a list of results. *)
type
'
a
m
=
'
a
list
type
'
a
m
=
'
a
list
...
...
src/misc.ml
View file @
e2177ee0
...
@@ -279,3 +279,6 @@ let new_intern capacity =
...
@@ -279,3 +279,6 @@ let new_intern capacity =
!
c
(
H
.
length
table
)
!
c
(
H
.
length
table
)
in
in
intern
,
verbose
intern
,
verbose
let
new_intern_int
capacity
=
src/nonTerminalDefinitionInlining.ml
View file @
e2177ee0
(* $Id: nonTerminalDefinitionInlining.ml,v 1.17 2006/06/26 09:41:33 regisgia Exp $ *)
open
UnparameterizedSyntax
open
UnparameterizedSyntax
open
ListMonad
open
ListMonad
...
...
src/nonTerminalDefinitionInlining.mli
View file @
e2177ee0
(* $Id: nonTerminalDefinitionInlining.mli,v 1.5 2005/12/01 16:20:06 regisgia Exp $ *)
(** [inline g] traverses the rules of [g] and inlines the non terminal
(** [inline g] traverses the rules of [g] and inlines the non terminal
definitions that are marked with [%inline]. It returns a pair of the transformed
definitions that are marked with [%inline]. It returns a pair of the transformed
grammar and a flag that tells whether any inlining was actually done. *)
grammar and a flag that tells whether any inlining was actually done. *)
...
...
src/parameterizedGrammar.mli
View file @
e2177ee0
(* $Id: parameterizedGrammar.mli,v 1.6 2005/12/01 16:20:06 regisgia Exp $ *)
(* This turns a grammar where nonterminal symbols can be parameterized
(* This turns a grammar where nonterminal symbols can be parameterized
into a grammar where nonterminal symbols are not parameterized. The
into a grammar where nonterminal symbols are not parameterized. The
transformation is a textual expansion process, whose termination is
transformation is a textual expansion process, whose termination is
...
...
src/parameters.ml
View file @
e2177ee0
(* $Id: parameters.ml,v 1.12 2005/12/02 16:16:22 regisgia Exp $ *)
(* TEMPORARY clean up and write an .mli file *)
(* TEMPORARY clean up and write an .mli file *)
open
Syntax
open
Syntax
...
...
src/partialGrammar.ml
View file @
e2177ee0
(* $Id: partialGrammar.ml,v 1.63 2006/10/22 14:07:57 fpottier Exp $ *)
open
Misc
open
Misc
open
Syntax
open
Syntax
open
ConcreteSyntax
open
ConcreteSyntax
...
...
src/partialGrammar.mli
View file @
e2177ee0
(* $Id: partialGrammar.mli,v 1.4 2005/12/01 16:20:07 regisgia Exp $ *)
val
join_partial_grammars
:
val
join_partial_grammars
:
ConcreteSyntax
.
grammar
list
->
InternalSyntax
.
grammar
ConcreteSyntax
.
grammar
list
->
InternalSyntax
.
grammar
src/positions.ml
View file @
e2177ee0
(* $Id: positions.ml,v 1.9 2005/12/01 16:20:07 regisgia Exp $ *)
(* TEMPORARY vérifier que ces fonctions sont utilisées partout et
(* TEMPORARY vérifier que ces fonctions sont utilisées partout et
de façon cohérente; interaction avec [Error]? *)
de façon cohérente; interaction avec [Error]? *)
...
...
src/positions.mli
View file @
e2177ee0
(* $Id: positions.mli,v 1.10 2005/12/01 16:20:07 regisgia Exp $ *)
(* TEMPORARY faire un peu le ménage dans cette interface pléthorique? *)
(* TEMPORARY faire un peu le ménage dans cette interface pléthorique? *)
(** Extension of standard library's positions. *)
(** Extension of standard library's positions. *)
...
...
src/stretch.mli
View file @
e2177ee0
(* $Id: stretch.mli,v 1.4 2005/12/01 16:20:07 regisgia Exp $ *)
(* A stretch is a fragment of a source file. It holds the file name,
(* A stretch is a fragment of a source file. It holds the file name,
the line number, and the line count (that is, the length) of the
the line number, and the line count (that is, the length) of the
fragment. These are used for generating #line directives when the
fragment. These are used for generating #line directives when the
...
...
src/unionFind.ml
View file @
e2177ee0
(* $Id: unionFind.ml,v 1.5 2005/12/01 16:20:07 regisgia Exp $ *)
(** This module implements a simple and efficient union/find algorithm.
(** This module implements a simple and efficient union/find algorithm.
See Robert E. Tarjan, ``Efficiency of a Good But Not Linear Set
See Robert E. Tarjan, ``Efficiency of a Good But Not Linear Set
Union Algorithm'', JACM 22(2), 1975. *)
Union Algorithm'', JACM 22(2), 1975. *)
...
...
src/unionFind.mli
View file @
e2177ee0
(* $Id: unionFind.mli,v 1.5 2005/12/01 16:20:07 regisgia Exp $ *)
(** This module implements a simple and efficient union/find algorithm.
(** This module implements a simple and efficient union/find algorithm.
See Robert E. Tarjan, ``Efficiency of a Good But Not Linear Set
See Robert E. Tarjan, ``Efficiency of a Good But Not Linear Set
Union Algorithm'', JACM 22(2), 1975. *)
Union Algorithm'', JACM 22(2), 1975. *)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment