Skip to content

Commit e6ec04f

Browse files
authored
Merge pull request #1197 from plotly/1189-julia-components
Initial support for Dash.jl component generation
2 parents d5452c0 + 439c8aa commit e6ec04f

File tree

5 files changed

+596
-11
lines changed

5 files changed

+596
-11
lines changed

dash/development/_all_keywords.py

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,3 +68,38 @@
6868
"NA_character_",
6969
"...",
7070
}
71+
72+
# This is a set of Julia reserved words that cannot be used as function
73+
# argument names.
74+
75+
julia_keywords = {
76+
"baremodule",
77+
"begin",
78+
"break",
79+
"catch",
80+
"const",
81+
"continue",
82+
"do",
83+
"else",
84+
"elseif",
85+
"end",
86+
"export",
87+
"false",
88+
"finally",
89+
"for",
90+
"function",
91+
"global",
92+
"if",
93+
"import",
94+
"let",
95+
"local",
96+
"macro",
97+
"module",
98+
"quote",
99+
"return",
100+
"struct",
101+
"true",
102+
"try",
103+
"using",
104+
"while",
105+
}

0 commit comments

Comments
 (0)