Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Archive
anjuta
Commits
0d279791
Commit
0d279791
authored
Nov 12, 2010
by
Jonh Wendell
Browse files
Bump vala version to 0.12
parent
d65856d9
Changes
3
Hide whitespace changes
Inline
Side-by-side
configure.ac
View file @
0d279791
...
...
@@ -285,7 +285,7 @@ else
AC_MSG_RESULT(no)
enable_vala="yes"
PKG_CHECK_MODULES(VALA,
[vala-0.1
0
>= $VALA_REQUIRED])
[
lib
vala-0.1
2
>= $VALA_REQUIRED])
fi
if test x$enable_vala = xyes; then
...
...
plugins/symbol-db/anjuta-tags/Makefile.am
View file @
0d279791
...
...
@@ -31,7 +31,7 @@ js-parser/lex.yy.c : ${LEXFILE}
${LEXER}
${LEXCCFLAGS}
${LEXFILE}
ctags-visitor.c
:
ctags-visitor.vala
$(VALAC)
-g
-h
ctags-vala.h
-C
--pkg
vala-0.1
0
$^
$(VALAC)
-g
-h
ctags-vala.h
-C
--pkg
lib
vala-0.1
2
$^
anjuta_tags_SOURCES
=
\
main.c
\
...
...
plugins/symbol-db/anjuta-tags/ctags-visitor.vala
View file @
0d279791
...
...
@@ -112,7 +112,7 @@ public class CTagsVisitor : CodeVisitor {
}
return
ret
.
str
;
}
static
string
signature
(
Vala
.
List
<
Vala
.
Formal
Parameter
>
parameter
)
{
static
string
signature
(
Vala
.
List
<
Vala
.
Parameter
>
parameter
)
{
var
ret
=
new
StringBuilder
(
"("
);
var
first
=
true
;
foreach
(
var
p
in
parameter
)
{
...
...
@@ -367,7 +367,7 @@ public class CTagsVisitor : CodeVisitor {
* assumes that Parser.context is the same as source_file.context anyway */
var
context
=
new
CodeContext
();
context
.
report
=
new
DummyReport
();
var
source_file
=
new
SourceFile
(
context
,
filename
,
filename
.
has_suffix
(
"vapi"
));
var
source_file
=
new
SourceFile
(
context
,
filename
.
has_suffix
(
"vapi"
)
?
SourceFileType
.
PACKAGE
:
SourceFileType
.
SOURCE
,
filename
);
CodeContext
.
push
(
context
);
context
.
add_source_file
(
source_file
);
...
...
@@ -383,7 +383,7 @@ public class CTagsVisitor : CodeVisitor {
taglist
=
new
GLib
.
List
<
CTagsEntry
?>();
var
context
=
new
CodeContext
();
context
.
report
=
new
DummyReport
();
var
source_file
=
new
SourceFile
(
context
,
filename
);
var
source_file
=
new
SourceFile
(
context
,
SourceFileType
.
SOURCE
,
filename
);
context
.
add_source_file
(
source_file
);
CodeContext
.
push
(
context
);
...
...
Write
Preview
Supports
Markdown
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