Skip to content

Instantly share code, notes, and snippets.

View quintesse's full-sized avatar

Tako Schotanus quintesse

  • RedHat
  • Alicante, Spain
  • 03:53 (UTC +02:00)
View GitHub Profile
Description Resource Path Location Type
AbstractLaunchConfigurationTab cannot be resolved to a type CeylonTestLaunchConfigTab.java /com.redhat.ceylon.test.eclipse.plugin/src/com/redhat/ceylon/test/eclipse/plugin/launch line 43 Java Problem
AbstractLaunchConfigurationTabGroup cannot be resolved to a type CeylonTestLaunchConfigTabGroup.java /com.redhat.ceylon.test.eclipse.plugin/src/com/redhat/ceylon/test/eclipse/plugin/launch line 11 Java Problem
AbstractPreferenceInitializer cannot be resolved to a type CeylonTestPreferenceInitializer.java /com.redhat.ceylon.test.eclipse.plugin/src/com/redhat/ceylon/test/eclipse/plugin line 9 Java Problem
AbstractUIPlugin cannot be resolved to a type CeylonAndroidPlugin.java /com.redhat.ceylon.eclipse.android.plugin/src/com/redhat/ceylon/eclipse/android/plugin line 10 Java Problem
AbstractUIPlugin cannot be resolved to a type CeylonTestPlugin.java /com.redhat.ceylon.test.eclipse.plugin/src/com/redhat/ceylon/test/eclipse/plugin line 14 Java Problem
Action cannot be resolved to
@quintesse
quintesse / script.ceylon
Last active September 17, 2015 11:30
Ceylon Web Runner: Test 2
//$webrun_wrapped
shared void run() {
// The classic "hello world" in Ceylon
print("Hello world!");
// This prints the same text:
String str = "world";
print("Hello ``str``!");
// Click "Run" below to run the program.
@quintesse
quintesse / README.md
Last active September 21, 2016 15:03
Ceylon Web Runner: Test 1

This file's preview pane is the one that should show up first!

@quintesse
quintesse / demo.md
Last active September 24, 2015 18:57
Ceylon Web Runner: Idaika???

Ceylon compiler and tools

License

The content of this repository is released under the GPL v2 + Classpath Exception as provided in the LICENSE file that accompanied this code.

By submitting a "pull request" or otherwise contributing to this repository, you

@quintesse
quintesse / script.ceylon
Last active September 17, 2015 11:03
Ceylon Web Runner: Test 3
//$webrun_wrapped
shared void run() {
// The classic "hello world" in Ceylon
print("Hello world!");
// This prints the same text:
String str = "world";
print("Hello ``str``!");
// Click "Run" below to run the program.
@quintesse
quintesse / script.ceylon
Last active September 17, 2015 00:31
Ceylon Web Runner: Test 4
//$webrun_wrapped
shared void run() {
// The classic "hello world" in Ceylon
print("Hello world!");
// This prints the same text:
String str = "world";
print("Hello ``str``!");
// Click "Run" below to run the program.
@quintesse
quintesse / main.ceylon
Last active September 24, 2015 17:13
Ceylon Web Runner: Test 5
//$webrun_wrapped
shared void run() {
print(runtime.version);
}
@quintesse
quintesse / hello_world.ceylon
Last active October 6, 2015 17:01
Ceylon Web Runner: JS Test
//$webrun_wrapped
shared void run() {
// An interop demo
dynamic {
dynamic x = foobar();
dynamic y = \iObject.getOwnPropertyNames(x);
print("{");
for (i in y) {
print(" " + i + ": '" + x[i] + "',");
}
@quintesse
quintesse / hello_world.ceylon
Last active September 27, 2015 10:46
Ceylon Web Runner: errors
shared void run() {
Integer unused;
String x = nothing;
hello();
}
@quintesse
quintesse / hello_world.ceylon
Last active October 28, 2015 20:56
Ceylon Web Runner: xxx
shared void run(){
// The classic "hello world" in Ceylon
print("Hello world!");
// This prints the same text:
String str = "world";
print("Hello ``str``!");
// Click "Run" above to run the program.
// It is converted to JavaScript and runs directly in your browser!