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
C
clean-ide
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
6
Issues
6
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
clean-and-itasks
clean-ide
Commits
a91d5e3c
Commit
a91d5e3c
authored
Nov 09, 2010
by
John van Groningen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rename getPath and setPath as getProjectFilePath and setProjectFilePath
parent
13efbf36
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
7 deletions
+7
-7
BatchBuild/IdeState.dcl
BatchBuild/IdeState.dcl
+2
-2
BatchBuild/IdeState.icl
BatchBuild/IdeState.icl
+5
-5
No files found.
BatchBuild/IdeState.dcl
View file @
a91d5e3c
...
...
@@ -48,8 +48,8 @@ setABCCache :: !*ABCCache !*GeneralSt -> *GeneralSt
getFICache
::
!*
GeneralSt
->
(
FileInfoCache
,*
GeneralSt
)
setFICache
::
!
FileInfoCache
!*
GeneralSt
->
*
GeneralSt
getPath
::
!*
GeneralSt
->
(!
Pathname
,!*
GeneralSt
)
setPath
::
!
Pathname
!*
GeneralSt
->
*
GeneralSt
getP
rojectFileP
ath
::
!*
GeneralSt
->
(!
Pathname
,!*
GeneralSt
)
setP
rojectFileP
ath
::
!
Pathname
!*
GeneralSt
->
*
GeneralSt
getStup
::
!*
GeneralSt
->
(!
Pathname
,!*
GeneralSt
)
...
...
BatchBuild/IdeState.icl
View file @
a91d5e3c
...
...
@@ -49,7 +49,7 @@ instance FileEnv GeneralSt where
::
*
General
=
{
prefs
::
!
Prefs
,
project
::
!
Project
,
cache
::
!*(
Maybe
!
*
ABCCache
)
,
cache
::
!*(
Maybe
*
ABCCache
)
,
fi_cache
::
!(
Maybe
FileInfoCache
)
,
pr_path
::
!
Pathname
// proj_path
,
stup
::
!
Pathname
// appl_path
...
...
@@ -124,11 +124,11 @@ getFICache ps = accPLoc (\p=:{fi_cache = Just fi_cache}->(fi_cache,{p & fi_cache
setFICache
::
!
FileInfoCache
!*
GeneralSt
->
*
GeneralSt
setFICache
ac
ps
=
appPLoc
(\
p
->{
p
&
fi_cache
=
Just
ac
})
ps
getPath
::
!*
GeneralSt
->
(!
Pathname
,!*
GeneralSt
)
getPath
ps
=
ps
!
ls
.
pr_path
getP
rojectFileP
ath
::
!*
GeneralSt
->
(!
Pathname
,!*
GeneralSt
)
getP
rojectFileP
ath
ps
=
ps
!
ls
.
pr_path
setPath
::
!
Pathname
!*
GeneralSt
->
*
GeneralSt
setPath
path
ps
=
{
ps
&
ls
.
pr_path
=
path
}
setP
rojectFileP
ath
::
!
Pathname
!*
GeneralSt
->
*
GeneralSt
setP
rojectFileP
ath
path
ps
=
{
ps
&
ls
.
pr_path
=
path
}
getStup
::
!*
GeneralSt
->
(!
Pathname
,!*
GeneralSt
)
getStup
ps
=
ps
!
ls
.
stup
...
...
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