-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Chore/move to new bs compiler (#106)
* chore(core): Move to new brighterscript compiler * fix(bs): DO NOT MERGE Fixes bs compilation issues, and some namespacing issues. tests no longer rungaa DO NOT MERGE * chore(core): Updates build, namespacing, file separation - basically a big refacotring to move everything over to the correct brighterscript namespacing and clas separation. * some documentation change
- Loading branch information
1 parent
ea3200f
commit 511eff3
Showing
43 changed files
with
4,918 additions
and
4,534 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,15 @@ | ||
//framework tests | ||
{ | ||
"rootDir": "frameworkTests", | ||
"autoImportComponentScript": false | ||
} | ||
// framework | ||
// { | ||
// "rootDir": "src", | ||
// "files": [ | ||
// { | ||
// "src": "**/*.*", | ||
// "dest": "source" | ||
// } | ||
// ] | ||
// } |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
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 |
---|---|---|
|
@@ -14,7 +14,6 @@ | |
type="text/brightscript" | ||
uri="NodeExample.brs" /> | ||
|
||
|
||
<children> | ||
<Label | ||
id="nameText" | ||
|
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
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,2 @@ | ||
import "pkg:/source/tests/rooibosFunctionMap.brs" | ||
import "pkg:/source/tests/rooibosDist.brs" |
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 |
---|---|---|
@@ -1,24 +1,10 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<?xml version='1.0' encoding='UTF-8' ?> | ||
<component | ||
name="NodeExampleTests" | ||
extends="NodeExample" | ||
xsi:noNamespaceSchemaLocation="https://devtools.web.roku.com/schema/RokuSceneGraph.xsd" | ||
> | ||
<interface> | ||
<!-- public fields/functions --> | ||
<!-- <function name="Rooibos_RunNodeTests" /> --> | ||
</interface> | ||
|
||
<script | ||
type="text/brightscript" | ||
uri="pkg:/source/tests/NodeExampleTests.brs" /> | ||
|
||
<script | ||
type="text/brightscript" | ||
uri="pkg:/source/rooibosFunctionMap.brs" /> | ||
|
||
<script | ||
type="text/brightscript" | ||
uri="pkg:/source/tests/rooibosDist.brs" /> | ||
|
||
</component> | ||
name='NodeExampleTests' | ||
extends='NodeExample'> | ||
<interface> | ||
<!-- public fields/functions --> | ||
<function name='Rooibos_RunNodeTests' /> | ||
</interface> | ||
|
||
</component> |
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
Oops, something went wrong.