Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
I
inox
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
LARA
inox
Commits
70da94af
Commit
70da94af
authored
14 years ago
by
Philippe Suter
Browse files
Options
Downloads
Patches
Plain Diff
stuff
parent
540a61da
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
src/funcheck/CodeExtraction.scala
+27
-2
27 additions, 2 deletions
src/funcheck/CodeExtraction.scala
src/funcheck/Extractors.scala
+3
-18
3 additions, 18 deletions
src/funcheck/Extractors.scala
src/purescala/PrettyPrinter.scala
+1
-1
1 addition, 1 deletion
src/purescala/PrettyPrinter.scala
with
31 additions
and
21 deletions
src/funcheck/CodeExtraction.scala
+
27
−
2
View file @
70da94af
...
...
@@ -83,12 +83,15 @@ trait CodeExtraction extends Extractors {
scalaClassSyms
+=
(
sym
->
o2
)
scalaClassNames
+=
o2
}
case
ExCaseClass
(
o2
,
sym
)
=>
{
case
ExCaseClass
(
o2
,
sym
,
tpl
)
=>
{
if
(
scalaClassNames
.
contains
(
o2
))
{
unit
.
error
(
t
.
pos
,
"A class with the same name already exists."
)
}
scalaClassSyms
+=
(
sym
->
o2
)
scalaClassNames
+=
o2
// println("***")
// println(tpl)
// println("***")
}
case
_
=>
;
}
...
...
@@ -107,6 +110,28 @@ trait CodeExtraction extends Extractors {
}
})
classesToClasses
.
foreach
(
p
=>
{
println
(
p
.
_1
)
val
superC
:
List
[
ClassTypeDef
]
=
p
.
_1
.
tpe
.
baseClasses
.
filter
(
bcs
=>
scalaClassSyms
.
exists
(
pp
=>
pp
.
_1
==
bcs
)
&&
bcs
!=
p
.
_1
).
map
(
s
=>
classesToClasses
(
s
)).
toList
val
superAC
:
List
[
AbstractClassDef
]
=
superC
.
map
(
c
=>
{
if
(!
c
.
isInstanceOf
[
AbstractClassDef
])
{
unit
.
error
(
p
.
_1
.
pos
,
"Class is inheriting from non-abstract class."
)
null
}
else
{
c
.
asInstanceOf
[
AbstractClassDef
]
}
}).
filter
(
_
!=
null
)
if
(
superAC
.
length
>
1
)
{
unit
.
error
(
p
.
_1
.
pos
,
"Multiple inheritance."
)
}
if
(
superAC
.
length
==
1
)
{
p
.
_2
.
parent
=
Some
(
superAC
.
head
)
}
})
// TODO
// resolve all inheritance links (look at
// add all fields to case classes
...
...
@@ -118,7 +143,7 @@ trait CodeExtraction extends Extractors {
case
ExCaseClassSyntheticJunk
()
=>
;
case
ExObjectDef
(
o2
,
t2
)
=>
{
objectDefs
=
extractObjectDef
(
o2
,
t2
)
::
objectDefs
}
case
ExAbstractClass
(
o2
,
sym
)
=>
;
//println("That seems to be an abstract class: [[" + o2 + "]]")
case
ExCaseClass
(
o2
,
sym
)
=>
;
//println(o2)
case
ExCaseClass
(
_
,
_
,
_
)
=>
;
//println(o2)
case
ExConstructorDef
()
=>
;
case
ExMainFunctionDef
()
=>
;
case
ExFunctionDef
(
n
,
p
,
t
,
b
)
=>
{
funDefs
=
extractFunDef
(
n
,
p
,
t
,
b
)
::
funDefs
}
...
...
This diff is collapsed.
Click to expand it.
src/funcheck/Extractors.scala
+
3
−
18
View file @
70da94af
...
...
@@ -74,25 +74,10 @@ trait Extractors {
}
object
ExCaseClass
{
def
unapply
(
cd
:
ClassDef
)
:
Option
[(
String
,
Symbol
)]
=
cd
match
{
def
unapply
(
cd
:
ClassDef
)
:
Option
[(
String
,
Symbol
,
Tree
)]
=
cd
match
{
case
ClassDef
(
_
,
name
,
tparams
,
impl
)
if
(
cd
.
symbol
.
isCase
&&
!
cd
.
symbol
.
isAbstractClass
&&
tparams
.
isEmpty
&&
impl
.
body
.
size
>=
8
)
=>
{
// println("I think I have something here")
// cd.symbol.tpe match {
// case TypeRef(_, sym, Nil) => {
// println("It's a typeref, of course")
// println(sym.tpe)
// println(debugString(sym.tpe))
// println(sym.tpe.baseTypeSeq)
// println(sym.tpe.baseClasses)
// }
// case ClassInfoType(prts, decls, cls) => {
// println("## " + prts)
// println("## " + decls)
// println("## " + cls)
// }
// case _ => ;
// }
Some
((
name
.
toString
,
cd
.
symbol
))
Some
((
name
.
toString
,
cd
.
symbol
,
impl
))
}
case
_
=>
None
}
...
...
This diff is collapsed.
Click to expand it.
src/purescala/PrettyPrinter.scala
+
1
−
1
View file @
70da94af
...
...
@@ -148,7 +148,7 @@ object PrettyPrinter {
ind
(
nsb
)
nsb
.
append
(
"sealed abstract class "
)
nsb
.
append
(
id
)
parent
.
foreach
(
p
=>
nsb
.
append
(
"extends "
+
p
.
id
+
" "
))
parent
.
foreach
(
p
=>
nsb
.
append
(
"
extends "
+
p
.
id
))
nsb
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment