This file contains hidden or 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
function createBackground() { | |
} | |
var StartScreenLayer = cc.Layer.extend({ | |
ctor: function () { | |
this._super(); | |
// this function can call createBackground! | |
createBackground.call(this); | |
}, | |
callCreateBackgroundToo: function () { |
This file contains hidden or 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
package com.orientechnologies.orient.test; | |
import com.orientechnologies.orient.core.Orient; | |
import com.orientechnologies.orient.core.command.OCommandOutputListener; | |
import com.orientechnologies.orient.core.db.graph.OGraphDatabase; | |
import com.orientechnologies.orient.core.db.tool.ODatabaseExport; | |
import com.orientechnologies.orient.core.db.tool.ODatabaseImport; | |
import com.orientechnologies.orient.core.hook.ORecordHook; | |
import com.orientechnologies.orient.core.metadata.schema.OSchema; | |
import com.orientechnologies.orient.core.record.impl.ODocument; |
This file contains hidden or 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
import com.orientechnologies.orient.core.db.document.ODatabaseDocumentTx; | |
import com.orientechnologies.orient.core.record.impl.ODocument; | |
import com.orientechnologies.orient.core.sql.OCommandSQL; | |
import java.util.List; | |
public class TestEscaping { | |
private ODatabaseDocumentTx db; | |
public static void main(String... args) { |
This file contains hidden or 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
var common = require('./common'); | |
common.log('A'); |
NewerOlder