Skip to content

Commit

Permalink
testing issue templates
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobbogers committed Oct 14, 2018
1 parent fa42492 commit 6197705
Show file tree
Hide file tree
Showing 7 changed files with 100 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/ISSUE_TEMPLATE/Bug_report.md
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 added .npmignore.json
Empty file.
3 changes: 3 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"as3mxml.sdk.framework": "c:\\bin\\AIRSDK_Compiler"
}
Empty file added index.js
Empty file.
37 changes: 37 additions & 0 deletions src/classes.ts
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}');`))
31 changes: 31 additions & 0 deletions src/s3.js
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 added webpack.config.js
Empty file.

0 comments on commit 6197705

Please sign in to comment.