Skip to content

Commit b9bbdc1

Browse files
committed
Use Milan's reserved words fix from DataTables
1 parent 64615dd commit b9bbdc1

File tree

5 files changed

+10
-15
lines changed

5 files changed

+10
-15
lines changed

REQUIRE

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ StatsBase 0.11.0
44
GZip
55
SortingAlgorithms
66
Reexport
7-
Compat 0.8.4
7+
Compat 0.18.0
88
FileIO 0.1.2

src/other/utils.jl

+4-1
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,14 @@ import Base: isidentifier, is_id_start_char, is_id_char
22

33
# FixMe! Incomplete list. E.g. `true` is missing
44
const RESERVED_WORDS = Set(["local", "global", "export", "let", "bitstype",
5-
"typealias", "using", "for", "struct", "while", "const", "immutable",
5+
"typealias", "using", "for", "while", "const", "immutable",
66
"baremodule", "continue", "import", "function", "macro", "if", "else",
77
"finally", "try", "module", "elseif", "end", "begin", "quote", "do", "break",
88
"catch", "abstract", "return", "type", "importall"])
99

10+
VERSION < v"0.6.0-dev.2194" && push!(RESERVED_WORDS, "ccall")
11+
VERSION >= v"0.6.0-dev.2698" && push!(RESERVED_WORDS, "struct")
12+
1013
function identifier(s::AbstractString)
1114
s = normalize_string(s)
1215
if !isidentifier(s)

src/statsmodels/contrasts.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ termnames(C::MyCoding, levels, baseind) = ...
7272
```
7373
7474
"""
75-
abstract type AbstractContrasts end
75+
@compat abstract type AbstractContrasts end
7676

7777
# Contrasts + Levels (usually from data) = ContrastsMatrix
7878
type ContrastsMatrix{C <: AbstractContrasts, T}

src/subdataframe/subdataframe.jl

+2-2
Original file line numberDiff line numberDiff line change
@@ -51,14 +51,14 @@ immutable SubDataFrame{T <: AbstractVector{Int}} <: AbstractDataFrame
5151
parent::DataFrame
5252
rows::T # maps from subdf row indexes to parent row indexes
5353

54-
@compat function SubDataFrame{T}(parent::DataFrame, rows::T) where T
54+
function (::Type{SubDataFrame{T}}){T}(parent::DataFrame, rows::T)
5555
if length(rows) > 0
5656
rmin, rmax = extrema(rows)
5757
if rmin < 1 || rmax > size(parent, 1)
5858
throw(BoundsError())
5959
end
6060
end
61-
new(parent, rows)
61+
new{T}(parent, rows)
6262
end
6363
end
6464

test/utils.jl

+2-10
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,6 @@ module TestUtils
1818

1919
# Check that reserved words are up to date
2020

21-
function _remove_comments(s::AbstractString)
22-
idx = search(s, ";;")
23-
if isempty(idx)
24-
return s
25-
else
26-
return s[1:(first(idx) - 1)]
27-
end
28-
end
29-
3021
f = "$JULIA_HOME/../../src/julia-parser.scm"
3122
if isfile(f)
3223
r1 = r"define initial-reserved-words '\(([^)]+)"
@@ -36,7 +27,8 @@ module TestUtils
3627
if m1 == nothing || m2 == nothing
3728
error("Unable to extract keywords from 'julia-parser.scm'.")
3829
else
39-
rw = Set(mapreduce(t -> split(_remove_comments(t)), vcat, split(m1.captures[1]*"\n"*m2.captures[1], '\n')))
30+
s = replace(m1.captures[1]*" "*m2.captures[1], r";;.*?\n", "")
31+
rw = Set(split(s, r"\W+"))
4032
@test rw == DataFrames.RESERVED_WORDS
4133
end
4234
else

0 commit comments

Comments
 (0)