mirror of
https://github.com/lubosz/overte.git
synced 2025-04-16 15:30:11 +02:00
Update JSBaker.h
This commit is contained in:
parent
f3983b3edc
commit
49f601329f
1 changed files with 3 additions and 3 deletions
|
@ -21,7 +21,7 @@ class JSBaker : public Baker {
|
|||
Q_OBJECT
|
||||
public:
|
||||
JSBaker(const QUrl& jsURL, const QString& bakedOutputDir);
|
||||
static bool bakeJS(const QByteArray* inputFile, QByteArray* outputFile);
|
||||
static bool bakeJS(const QByteArray& inputFile, QByteArray& outputFile);
|
||||
|
||||
public slots:
|
||||
virtual void bake() override;
|
||||
|
@ -31,8 +31,8 @@ private:
|
|||
QString _bakedOutputDir;
|
||||
QString _bakedJSFilePath;
|
||||
|
||||
static void handleSingleLineComments(QTextStream* in);
|
||||
static bool handleMultiLineComments(QTextStream* in);
|
||||
static void handleSingleLineComments(QTextStream& in);
|
||||
static bool handleMultiLineComments(QTextStream& in);
|
||||
|
||||
static bool canOmitSpace(QChar previousCharacter, QChar nextCharacter);
|
||||
static bool canOmitNewLine(QChar previousCharacter, QChar nextCharacter);
|
||||
|
|
Loading…
Reference in a new issue