-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
fa42492
commit 6197705
Showing
7 changed files
with
100 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
--- | ||
name: Bug report | ||
about: Create a report to help us improve | ||
|
||
--- | ||
|
||
**Describe the bug** | ||
A clear and concise description of what the bug is. | ||
|
||
**To Reproduce** | ||
Steps to reproduce the behavior. | ||
/!\ Please include the environment / route configuration you are using if you can (route, response type, headers, body, etc) | ||
|
||
**Expected behavior** | ||
A clear and concise description of what you expected to happen. | ||
|
||
**Screenshots** | ||
If applicable, add screenshots to help explain your problem. | ||
|
||
**r-base version:** | ||
1.0.0, 1.1.2, etc | ||
|
||
**OS / OS version:** | ||
Windows 10, Mac OS, Linux Ubuntu 18.xx, etc | ||
|
||
**Browser and version:** | ||
examples: | ||
* Chrome Version 69.0.3497.100 (Official Build) (64-bit) | ||
* Firefox |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"as3mxml.sdk.framework": "c:\\bin\\AIRSDK_Compiler" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
const preprocessor = [ | ||
'matrix', | ||
'list', | ||
'array', | ||
'data.frame', | ||
'numeric_version', | ||
'package_version', | ||
'POSIXlt', | ||
'POSIXct', | ||
'POSIXt', | ||
'numeric', | ||
'qr', | ||
'character', | ||
'file', | ||
'difftime', | ||
'vector', | ||
'character', | ||
'raw', | ||
'AsIs', | ||
'factor', | ||
'integer', | ||
'complex', | ||
'logical', | ||
'ts', | ||
'noquote', | ||
'environment', | ||
'Date', | ||
'formula', | ||
'qr', | ||
'lm', | ||
'error', | ||
'glm' | ||
] | ||
.map(s=>({ o:s, v:s.replace(/(\.([A-Za-z]))/,a => a[1].toUpperCase())})) | ||
.sort() | ||
.filter((f,i,arr) => arr.indexOf(f,i+1) === -1) | ||
.forEach(s => console.log(`export const ${s.v} = Symbol.for('${s.o}');`)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
export const character = Symbol.for('character'); | ||
export const matrix = Symbol.for('matrix'); | ||
export const array = Symbol.for('array'); | ||
export const dataFrame = Symbol.for('data.frame'); | ||
export const numeric_version = Symbol.for('numeric_version'); | ||
export const package_version = Symbol.for('package_version'); | ||
export const POSIXlt = Symbol.for('POSIXlt'); | ||
export const POSIXct = Symbol.for('POSIXct'); | ||
export const POSIXt = Symbol.for('POSIXt'); | ||
export const numeric = Symbol.for('numeric'); | ||
export const qr = Symbol.for('qr'); | ||
export const character = Symbol.for('character'); | ||
export const file = Symbol.for('file'); | ||
export const difftime = Symbol.for('difftime'); | ||
export const vector = Symbol.for('vector'); | ||
export const list = Symbol.for('list'); | ||
export const raw = Symbol.for('raw'); | ||
export const AsIs = Symbol.for('AsIs'); | ||
export const factor = Symbol.for('factor'); | ||
export const integer = Symbol.for('integer'); | ||
export const complex = Symbol.for('complex'); | ||
export const logical = Symbol.for('logical'); | ||
export const ts = Symbol.for('ts'); | ||
export const noquote = Symbol.for('noquote'); | ||
export const environment = Symbol.for('environment'); | ||
export const Date = Symbol.for('Date'); | ||
export const formula = Symbol.for('formula'); | ||
export const qr = Symbol.for('qr'); | ||
export const lm = Symbol.for('lm'); | ||
export const error = Symbol.for('error'); | ||
export const glm = Symbol.for('glm'); |
Empty file.