From c0b63a690e06f410a61f9df4d1a191c40a8da6cb Mon Sep 17 00:00:00 2001 From: Moonchild Date: Mon, 14 Feb 2022 10:25:57 +0000 Subject: No issue - Update docs. --- docs/CONTRIBUTING.md | 4 +- docs/GRE Coding Style.md | 475 +++++++++++++++++++++++++++++++++++++++++++++++ docs/UXP Coding Style.md | 475 ----------------------------------------------- 3 files changed, 477 insertions(+), 477 deletions(-) create mode 100644 docs/GRE Coding Style.md delete mode 100644 docs/UXP Coding Style.md diff --git a/docs/CONTRIBUTING.md b/docs/CONTRIBUTING.md index 031ddb904..c98a76f3b 100644 --- a/docs/CONTRIBUTING.md +++ b/docs/CONTRIBUTING.md @@ -1,6 +1,6 @@ # Code contribution guidelines -To make sure code changes remain easy to organize, find and troubleshoot, please use the following guidelines when contributing code to the Pale Moon project (and UXP). These guidelines may, for some of you, sound tedious or more work than you'd prefer to put in, but keep in mind that a single paragraph of explanation with a code commit can save hours of work later on, and code comments can save your hide when trying to debug or improve code. +To make sure code changes remain easy to organize, find and troubleshoot, please use the following guidelines when contributing code to the Pale Moon project (and GRE). These guidelines may, for some of you, sound tedious or more work than you'd prefer to put in, but keep in mind that a single paragraph of explanation with a code commit can save hours of work later on, and code comments can save your hide when trying to debug or improve code. ## General guideline for issues @@ -39,7 +39,7 @@ For META issues it is important that discussion about specific implementation pa ## General guideline for submitting pull requests -Most of our code changes will likely be submitted by collaborators from our community. This will be ported from other projects (e.g. Mozilla-based code) or new implementations, or a mix. The standard way of getting your code into Pale Moon or UXP is by way of creating a pull request against the master branch (trunk). +Most of our code changes will likely be submitted by collaborators from our community. This will be ported from other projects (e.g. Mozilla-based code) or new implementations, or a mix. The standard way of getting your code into Pale Moon or GRE is by way of creating a pull request against the master branch (trunk). A good pull request will: - **Have an issue associated with it!** Even though GitHub offers very similar tools for PRs as it does for issues, any reasoning behind code commits in a PR have to be explained in an accompanying issue. diff --git a/docs/GRE Coding Style.md b/docs/GRE Coding Style.md new file mode 100644 index 000000000..f863d46a6 --- /dev/null +++ b/docs/GRE Coding Style.md @@ -0,0 +1,475 @@ +# GRE Coding Style Guide +While our source tree is currently in a number of different Coding Styles and the general rule applies to adhere to style of surrounding code when you are making changes, it is our goal to unify the style of our source tree and making it adhere to a single style. +This document describes the preferred style for new source code files and the preferred style to convert existing files to. + +This style guide will not apply to 3rd party libraries that are imported verbatim to our code (e.g. NSS, NSPR, SQLite, various media libs, etc.). + +Our own managed and maintained code should adhere to this guide where possible or feasible. It departs from the Mozilla Coding Style in some ways, but considering Mozilla has abandoned their code style in favor of Google code style, we are now defining our own preferred style. + +**Important**: if you touch a file to make it adhere to this code style, do not mix code changes with formatting changes. Always make formatting changes throughout a file a single, separate commit that does not touch code functionality! + +## General formatting rules +The following formatting rules apply to all code: +- Always use spaces for indentation, never use tabs! +- Put a space between a keyword and parenthesis, e.g. `if (`. Do _not_ put a space between a function/type-assignment name and its parenthesis, e.g. `function(somevar)` or `int32_t(somevar)`. +- Put a space between variables and operators, e.g. `a == b`. +- Put a space after a comma or semicolon in variable lists, e.g. `function(a, b, c)` or `for (i = 1; i < 10; i++)`. +- Indentation of scopes is 2 spaces. +- Indentation of long lines is variable-aligned or expression-aligned (see "long line wrapping") +- Conditional defines are always placed on column 1. This is also true for nested defines. +- Maximum line length is 120 characters. This departs from the often-used 80-character limit which is rooted in the archaic use of 80-column text terminals and should no longer apply in this day. Github, our chief web VCS, has no issues dealing with 120 character lines either. +- Variables passed to functions are passed on one line unless the line would exceed the maximum length, in which case variables will be passed 1-per-line, expression-aligned (see "long line wrapping"). +- Avoid trailing commas. +- Comment blocks are line-quoted if they appear within functions. +- Comment blocks are block-quoted if they appear outside of functions (e.g. as function definition headers). + +## C and C++ +Applies to `*.c`, `*.cc`, `*.cpp` and `*.h`. Potentially also `*.mm` for Mac code. +### General formatting guidelines +- Place function return types, including modifiers like `static` on the same line as the function signature. + ```C++ + static bool somefunction(int var1, char* var2) { + ... + } + ``` +- When using templates, do not add spaces between the template name and its object. + ```C++ + nsCOMPtr + ``` +- Use braces, even for single-command lines. Avoid placing executed code on the expression line or using single-line indentation to indicate the scope. Always brace executed code. + + WRONG: + ```C++ + if (a == b) do_something(); + if (a == b) + do_something(); + if (a == b) { do_something(); } + ``` + CORRECT: + ```C++ + if (a == b) { + do_something(); + } + ``` +- Pointer types: When declaring pointer types, place the `*` with the pointer type. When referencing pointer types, place `*` or `&` with the variable. Do not use `*` by itself with whitespace. Some existing modules still use the `int *myvar1;` style, these should be converted. Until conversion is done, follow existing, surrounding code style or convert it when you touch a file. + + WRONG: + ```C++ + int * myvar; + int *myvar1, *myvar2; + int* myvar1, *myvar2; + int* myvar1, myvar2; //myvar2 isn't a pointer! + ``` + CORRECT: + ```C++ + char* somePointer; + int* myvar1; + int* myvar2; + function a(char* somePointer) [...] + myString = *somePointer; + myPointer = &myString; + ``` + +### Flow control +Flow control expressions should follow the following guidelines: +- Scopes have their opening braces on the expression line +- Scopes have their closing braces on a separate line, indent-aligned with the flow control expression +- Any alternative flow control paths are generally started with an expression on the closing brace line +- Case statements are indented by 2 on a new line with the case expression on its own line. +- Flow control default scopes are always placed at the bottom. +#### if..else +`if..else` statements example: +```C++ +if (something == somethingelse) { + true_case_code here; +} else { + false_case_code here; +} + +if (case1) { + case1_code here; +} else if (case2) { + case2_code here; +} else { + other_case_code here; +} + +if (case1) { + case1_code here; +} else { + if (case2) { + case2_code here; + } + case2_and_other_code here; +} +``` +#### for +`for` loop example: +```C++ +for (i = 1; i < max; i++) { + loop_code here; +} +``` +#### while +`while` loop example: +```C++ +while (something == true) { + loop_code here; +} +``` +#### switch..case +`switch..case` flow control example: +```C++ +switch (variable) { + case value1: + // Comment describing 1 + code_for_1; + code_for_1; + break; + case value2: // Comment describing 2 (alternative) + code_for_2; + code_for_2; + // fallthrough + case value3: + case value4: + code_for_3_and_4; + break; + default: + code_for_default; + code_for_default; +} +``` +### Classes +Classes have some special formatting rules applied to them: +- Classes follow the following sequence: CTOR, DTOR, methods, variables +- Class CTOR variable initializers (in lieu of assignments in the CTOR body) are listed one-per-line with a leading comma (or colon for the first). +- `public`, `private` and `protected` keywords are not indented and are at the same indentation level as the class identifier statement. + +Example class definition: +```C++ +class FocusClassExample : public Runnable { +public: + FocusClassExample(nsISupports* aTarget, + EventMessage aEventMessage, + nsPresContext* aContext, + nsPIDOMWindowOuter* aOriginalFocusedWindow, + nsIContent* aOriginalFocusedContent, + EventTarget* aRelatedTarget) + : mTarget(aTarget) + , mContext(aContext) + , mEventMessage(aEventMessage) + , mOriginalFocusedWindow(aOriginalFocusedWindow) + , mOriginalFocusedContent(aOriginalFocusedContent) + , mRelatedTarget(aRelatedTarget) { + CTOR_initializer_code here + } + + ~FocusClassExample { + DTOR_code here + } + + NS_IMETHOD Run() override { + nsCOMPtr originalWindowFocus = mOriginalFocusedWindow ? + mOriginalFocusedWindow->GetFocusedNode() : + nullptr; + // Blink does not check that focus is the same after blur, but WebKit does. + // Opt to follow Blink's behavior (see bug 687787). + if (mEventMessage == eFocusOut || originalWindowFocus == mOriginalFocusedContent) { + InternalFocusEvent event(true, mEventMessage); + event.mFlags.mBubbles = true; + event.mFlags.mCancelable = false; + event.mRelatedTarget = mRelatedTarget; + return EventDispatcher::Dispatch(mTarget, mContext, &event); + } + return NS_OK; + } + + nsCOMPtr mTarget; + RefPtr mContext; +private: + EventMessage mEventMessage; + nsCOMPtr mOriginalFocusedWindow; + nsCOMPtr mOriginalFocusedContent; + nsCOMPtr mRelatedTarget; +}; +``` +### Long line wrapping +If statements on a single line become overly long, they should be split into multiple lines: +- Binary operators (including ternary) must be left on their original lines if the line break happens around the operator. The second line should start in the same column as the start of the expression in the first line. +- Lists of variables (e.g. when calling or declaring a function) should be split so variables are listed one-per-line, where second and subsequent lines start in the same column as the first variable listed, even if more than one variable would fit on the line segment until the wrapping column. + +WRONG: +```C++ +somelongnamespace::somelongfunction(var1, var2, var3, + var4, var5); +somelongnamespace::somelongfunction( + var1, var2, var3, var4, var5); +if (somelongvariable == somelongothervariable + || somelongvariable2 == somelongothervariable2) { +somelongvariable = somelongexpression ? somevalue1 + : somevalue2; +``` +CORRECT: +```C++ +somelongnamespace::somelongfunction(var1, + var2, + var3, + var4, + var5); +if (somelongvariable == somelongothervariable || + somelongvariable2 == somelongothervariable2) { +somelongvariable = somelongexpression ? + somevalue1 : + somevalue2; +``` + +## JavaScript +Applies to `*.js` and `*.jsm`. +### General formatting guidelines +- Place function signatures on the same line as js object identifiers, and do not use named function syntax in that case: + ```JavaScript + var myObject = { + myIdentifier: function(var1, var2) { + ... + }, + myIdentifier2: function() { + ... + } + } + ``` +- Variable initializers should be placed on the variable declaration line if needed. + ```JavaScript + var fwdCommand = document.getElementById("Browser:Forward"); + ``` + ```JavaScript + var myObject = { + myVariable: null, + myString: "Something" + } + ``` +- Avoid placing executed code on the expression line. Preferably brace executed code. + + WRONG: + ```JavaScript + if (a == b) do_something(); + if (a == b) { do_something(); } + ``` + DISCOURAGED: + ```JavaScript + if (a == b) + do_something(); + ``` + CORRECT: + ```JavaScript + if (a == b) { + do_something(); + } + ``` +- Format in-lined variable functions as if you would format normal functions with the exception of closure: break with the opening brace, followed by code, and closing brace on its own line, followed immediately by any other variables passed in-line. + ```JavaScript + appMenuButton.addEventListener("mousedown", function(event) { + if (event.button == 0) { + appMenuOpening = new Date(); + } + }, false); + ``` +- Don't use a space between `{` `}` braces in empty js objects, `{` `}` braces in empty function scopes, or `[` `]` brackets in empty arrays. + +### Flow control +Flow control expressions should follow the following guidelines: +- Scopes have their opening braces on the expression line +- Scopes have their closing braces on a separate line, indent-aligned with the flow control expression +- Any alternative flow control paths are generally started with an expression on the closing brace line. The logic behind this is that you should keep the flow control level visually the same for the executed code blocks with no breaks (a closing brace on its own line means "done"). +- Case statements are indented by 2 on a new line with the case expression on its own line. +- Flow control default scopes are always placed at the bottom. + +#### if..else +`if..else` statements example: +```JavaScript +if (something == somethingelse) { + true_case_code here; +} else { + false_case_code here; +} + +if (case1) { + case1_code here; +} else if (case2) { + case2_code here; +} else { + other_case_code here; +} + +if (case1) { + case1_code here; +} else { + if (case2) { + case2_code here; + } + case2_and_other_code here; +} +``` +#### for +`for` loop example: +```JavaScript +for (let i = 1; i < max; i++) { + loop_code here; +} + +for (let i = 0;; i++) { + do_something_with(i); + if (i > max) break; + ... +} +``` +#### while +`while` loop example: +```JavaScript +while (something == true) { + loop_code here; +} + +do { + execute_me_at_least_once(); + ... +} while (something == true); +``` +#### switch..case +`switch..case` flow control example: +```JavaScript +switch (variable) { + case value1: + // Comment describing 1 + code_for_1; + code_for_1; + break; + case value2: // Comment describing 2 (alternative) + code_for_2; + code_for_2; + // fallthrough + case value3: + case value4: + code_for_3_and_4; + break; + default: + code_for_default; + code_for_default; +} +``` +Alternatively (braced): +```JavaScript +switch (variable) { + case value1: { + // Comment describing 1 + code_for_1; + code_for_1; + break; + } + case value2: { + code_for_2; + code_for_2; + // fallthrough + } + case value3: + case value4: { + code_for_3_and_4; + break; + } + default: { + code_for_default; + code_for_default; + } +} +``` + +#### try..catch +- When using `try..catch` blocks, the use of optional catch binding is discouraged. Please always include the error variable. + +`try..catch` flow control examples: +```JavaScript +try { + do_something(); +} catch(e) { + handle_error(e); +} finally { + always(); +} + +try { + do_something(); +} catch(e) {} + +try { + do_something(); +} finally { + always(); +} +``` +DISCOURAGED +```JavaScript +try { + do_something(); +} catch { + // No error processing + do_something_else(); +} +``` + +### Long line wrapping +If statements on a single line become overly long, they should be split into multiple lines: +- Binary operators (including ternary) must be left on their original lines if the line break happens around the operator. The second line should start in the same column as the start of the expression in the first line. +- Lists of variables (e.g. when calling or declaring a function) should be split at the wrapping column. +- Long OOP calls should be split at the period with the period on the start of the new line, indented to the column of the first object, filling to the wrapping column where possible, including additional terms. +- When breaking assignments/operations/logic, break right after the operator (`=`, `+`, `&&`, `||`, etc.) +- **Don't break too rigorously**; short additions should be kept on the same line to keep things legible - use common sense and context for flexibility. + +WRONG: +```JavaScript +somelongobjectname.somelongfunction( + var1, var2, var3, var4, var5); + +if (somelongvariable == somelongothervariable + || somelongvariable2 == somelongothervariable2) { + +somelongvariable = somelongexpression ? somevalue1 + : somevalue2; + +var iShouldntBeUsingThisLongOfAVarName + = someValueToAdd + someValueToAdd + someValueToAdd + + someValueToAdd; + +Cu.import("resource:///modules/DownloadsCommon.jsm", {}). + DownloadsCommon.initializeAllDataLinks(); +``` +CORRECT: +```JavaScript +somelongobjectname.somelongfunction(var1, var2, var3, + var4, var5); + +if (somelongvariable == somelongothervariable || + somelongvariable2 == somelongothervariable2) { + +somelongvariable = somelongexpression ? + somevalue1 : + somevalue2; + +var iShouldntBeUsingThisLongOfAVarName = + someValueToAdd + someValueToAdd + someValueToAdd + + someValueToAdd; + +Cu.import("resource:///modules/DownloadsCommon.jsm", {}) + .DownloadsCommon.initializeAllDataLinks(); + +let sessionStartup = Cc["@mozilla.org/browser/sessionstartup;1"] + .getService(Ci.nsISessionStartup); +``` + +## XUL and other XML-derivatives +Applies to `*.xul`, `*.html`, `*.xhtml`. +TODO +## IDL +Applies to `*.idl`, `*.xpidl` and `*.webidl`. +TODO +## Python-esque +Applies to `*.py`, `mozbuild` etc. +TODO diff --git a/docs/UXP Coding Style.md b/docs/UXP Coding Style.md deleted file mode 100644 index fc025584f..000000000 --- a/docs/UXP Coding Style.md +++ /dev/null @@ -1,475 +0,0 @@ -# UXP Coding Style Guide -While our source tree is currently in a number of different Coding Styles and the general rule applies to adhere to style of surrounding code when you are making changes, it is our goal to unify the style of our source tree and making it adhere to a single style. -This document describes the preferred style for new source code files and the preferred style to convert existing files to. - -This style guide will not apply to 3rd party libraries that are imported verbatim to our code (e.g. NSS, NSPR, SQLite, various media libs, etc.). - -Our own managed and maintained code should adhere to this guide where possible or feasible. It departs from the Mozilla Coding Style in some ways, but considering Mozilla has abandoned their code style in favor of Google code style, we are now defining our own preferred style. - -**Important**: if you touch a file to make it adhere to this code style, do not mix code changes with formatting changes. Always make formatting changes throughout a file a single, separate commit that does not touch code functionality! - -## General formatting rules -The following formatting rules apply to all code: -- Always use spaces for indentation, never use tabs! -- Put a space between a keyword and parenthesis, e.g. `if (`. Do _not_ put a space between a function/type-assignment name and its parenthesis, e.g. `function(somevar)` or `int32_t(somevar)`. -- Put a space between variables and operators, e.g. `a == b`. -- Put a space after a comma or semicolon in variable lists, e.g. `function(a, b, c)` or `for (i = 1; i < 10; i++)`. -- Indentation of scopes is 2 spaces. -- Indentation of long lines is variable-aligned or expression-aligned (see "long line wrapping") -- Conditional defines are always placed on column 1. This is also true for nested defines. -- Maximum line length is 120 characters. This departs from the often-used 80-character limit which is rooted in the archaic use of 80-column text terminals and should no longer apply in this day. Github, our chief web VCS, has no issues dealing with 120 character lines either. -- Variables passed to functions are passed on one line unless the line would exceed the maximum length, in which case variables will be passed 1-per-line, expression-aligned (see "long line wrapping"). -- Avoid trailing commas. -- Comment blocks are line-quoted if they appear within functions. -- Comment blocks are block-quoted if they appear outside of functions (e.g. as function definition headers). - -## C and C++ -Applies to `*.c`, `*.cc`, `*.cpp` and `*.h`. Potentially also `*.mm` for Mac code. -### General formatting guidelines -- Place function return types, including modifiers like `static` on the same line as the function signature. - ```C++ - static bool somefunction(int var1, char* var2) { - ... - } - ``` -- When using templates, do not add spaces between the template name and its object. - ```C++ - nsCOMPtr - ``` -- Use braces, even for single-command lines. Avoid placing executed code on the expression line or using single-line indentation to indicate the scope. Always brace executed code. - - WRONG: - ```C++ - if (a == b) do_something(); - if (a == b) - do_something(); - if (a == b) { do_something(); } - ``` - CORRECT: - ```C++ - if (a == b) { - do_something(); - } - ``` -- Pointer types: When declaring pointer types, place the `*` with the pointer type. When referencing pointer types, place `*` or `&` with the variable. Do not use `*` by itself with whitespace. Some existing modules still use the `int *myvar1;` style, these should be converted. Until conversion is done, follow existing, surrounding code style or convert it when you touch a file. - - WRONG: - ```C++ - int * myvar; - int *myvar1, *myvar2; - int* myvar1, *myvar2; - int* myvar1, myvar2; //myvar2 isn't a pointer! - ``` - CORRECT: - ```C++ - char* somePointer; - int* myvar1; - int* myvar2; - function a(char* somePointer) [...] - myString = *somePointer; - myPointer = &myString; - ``` - -### Flow control -Flow control expressions should follow the following guidelines: -- Scopes have their opening braces on the expression line -- Scopes have their closing braces on a separate line, indent-aligned with the flow control expression -- Any alternative flow control paths are generally started with an expression on the closing brace line -- Case statements are indented by 2 on a new line with the case expression on its own line. -- Flow control default scopes are always placed at the bottom. -#### if..else -`if..else` statements example: -```C++ -if (something == somethingelse) { - true_case_code here; -} else { - false_case_code here; -} - -if (case1) { - case1_code here; -} else if (case2) { - case2_code here; -} else { - other_case_code here; -} - -if (case1) { - case1_code here; -} else { - if (case2) { - case2_code here; - } - case2_and_other_code here; -} -``` -#### for -`for` loop example: -```C++ -for (i = 1; i < max; i++) { - loop_code here; -} -``` -#### while -`while` loop example: -```C++ -while (something == true) { - loop_code here; -} -``` -#### switch..case -`switch..case` flow control example: -```C++ -switch (variable) { - case value1: - // Comment describing 1 - code_for_1; - code_for_1; - break; - case value2: // Comment describing 2 (alternative) - code_for_2; - code_for_2; - // fallthrough - case value3: - case value4: - code_for_3_and_4; - break; - default: - code_for_default; - code_for_default; -} -``` -### Classes -Classes have some special formatting rules applied to them: -- Classes follow the following sequence: CTOR, DTOR, methods, variables -- Class CTOR variable initializers (in lieu of assignments in the CTOR body) are listed one-per-line with a leading comma (or colon for the first). -- `public`, `private` and `protected` keywords are not indented and are at the same indentation level as the class identifier statement. - -Example class definition: -```C++ -class FocusClassExample : public Runnable { -public: - FocusClassExample(nsISupports* aTarget, - EventMessage aEventMessage, - nsPresContext* aContext, - nsPIDOMWindowOuter* aOriginalFocusedWindow, - nsIContent* aOriginalFocusedContent, - EventTarget* aRelatedTarget) - : mTarget(aTarget) - , mContext(aContext) - , mEventMessage(aEventMessage) - , mOriginalFocusedWindow(aOriginalFocusedWindow) - , mOriginalFocusedContent(aOriginalFocusedContent) - , mRelatedTarget(aRelatedTarget) { - CTOR_initializer_code here - } - - ~FocusClassExample { - DTOR_code here - } - - NS_IMETHOD Run() override { - nsCOMPtr originalWindowFocus = mOriginalFocusedWindow ? - mOriginalFocusedWindow->GetFocusedNode() : - nullptr; - // Blink does not check that focus is the same after blur, but WebKit does. - // Opt to follow Blink's behavior (see bug 687787). - if (mEventMessage == eFocusOut || originalWindowFocus == mOriginalFocusedContent) { - InternalFocusEvent event(true, mEventMessage); - event.mFlags.mBubbles = true; - event.mFlags.mCancelable = false; - event.mRelatedTarget = mRelatedTarget; - return EventDispatcher::Dispatch(mTarget, mContext, &event); - } - return NS_OK; - } - - nsCOMPtr mTarget; - RefPtr mContext; -private: - EventMessage mEventMessage; - nsCOMPtr mOriginalFocusedWindow; - nsCOMPtr mOriginalFocusedContent; - nsCOMPtr mRelatedTarget; -}; -``` -### Long line wrapping -If statements on a single line become overly long, they should be split into multiple lines: -- Binary operators (including ternary) must be left on their original lines if the line break happens around the operator. The second line should start in the same column as the start of the expression in the first line. -- Lists of variables (e.g. when calling or declaring a function) should be split so variables are listed one-per-line, where second and subsequent lines start in the same column as the first variable listed, even if more than one variable would fit on the line segment until the wrapping column. - -WRONG: -```C++ -somelongnamespace::somelongfunction(var1, var2, var3, - var4, var5); -somelongnamespace::somelongfunction( - var1, var2, var3, var4, var5); -if (somelongvariable == somelongothervariable - || somelongvariable2 == somelongothervariable2) { -somelongvariable = somelongexpression ? somevalue1 - : somevalue2; -``` -CORRECT: -```C++ -somelongnamespace::somelongfunction(var1, - var2, - var3, - var4, - var5); -if (somelongvariable == somelongothervariable || - somelongvariable2 == somelongothervariable2) { -somelongvariable = somelongexpression ? - somevalue1 : - somevalue2; -``` - -## JavaScript -Applies to `*.js` and `*.jsm`. -### General formatting guidelines -- Place function signatures on the same line as js object identifiers, and do not use named function syntax in that case: - ```JavaScript - var myObject = { - myIdentifier: function(var1, var2) { - ... - }, - myIdentifier2: function() { - ... - } - } - ``` -- Variable initializers should be placed on the variable declaration line if needed. - ```JavaScript - var fwdCommand = document.getElementById("Browser:Forward"); - ``` - ```JavaScript - var myObject = { - myVariable: null, - myString: "Something" - } - ``` -- Avoid placing executed code on the expression line. Preferably brace executed code. - - WRONG: - ```JavaScript - if (a == b) do_something(); - if (a == b) { do_something(); } - ``` - DISCOURAGED: - ```JavaScript - if (a == b) - do_something(); - ``` - CORRECT: - ```JavaScript - if (a == b) { - do_something(); - } - ``` -- Format in-lined variable functions as if you would format normal functions with the exception of closure: break with the opening brace, followed by code, and closing brace on its own line, followed immediately by any other variables passed in-line. - ```JavaScript - appMenuButton.addEventListener("mousedown", function(event) { - if (event.button == 0) { - appMenuOpening = new Date(); - } - }, false); - ``` -- Don't use a space between `{` `}` braces in empty js objects, `{` `}` braces in empty function scopes, or `[` `]` brackets in empty arrays. - -### Flow control -Flow control expressions should follow the following guidelines: -- Scopes have their opening braces on the expression line -- Scopes have their closing braces on a separate line, indent-aligned with the flow control expression -- Any alternative flow control paths are generally started with an expression on the closing brace line. The logic behind this is that you should keep the flow control level visually the same for the executed code blocks with no breaks (a closing brace on its own line means "done"). -- Case statements are indented by 2 on a new line with the case expression on its own line. -- Flow control default scopes are always placed at the bottom. - -#### if..else -`if..else` statements example: -```JavaScript -if (something == somethingelse) { - true_case_code here; -} else { - false_case_code here; -} - -if (case1) { - case1_code here; -} else if (case2) { - case2_code here; -} else { - other_case_code here; -} - -if (case1) { - case1_code here; -} else { - if (case2) { - case2_code here; - } - case2_and_other_code here; -} -``` -#### for -`for` loop example: -```JavaScript -for (let i = 1; i < max; i++) { - loop_code here; -} - -for (let i = 0;; i++) { - do_something_with(i); - if (i > max) break; - ... -} -``` -#### while -`while` loop example: -```JavaScript -while (something == true) { - loop_code here; -} - -do { - execute_me_at_least_once(); - ... -} while (something == true); -``` -#### switch..case -`switch..case` flow control example: -```JavaScript -switch (variable) { - case value1: - // Comment describing 1 - code_for_1; - code_for_1; - break; - case value2: // Comment describing 2 (alternative) - code_for_2; - code_for_2; - // fallthrough - case value3: - case value4: - code_for_3_and_4; - break; - default: - code_for_default; - code_for_default; -} -``` -Alternatively (braced): -```JavaScript -switch (variable) { - case value1: { - // Comment describing 1 - code_for_1; - code_for_1; - break; - } - case value2: { - code_for_2; - code_for_2; - // fallthrough - } - case value3: - case value4: { - code_for_3_and_4; - break; - } - default: { - code_for_default; - code_for_default; - } -} -``` - -#### try..catch -- When using `try..catch` blocks, the use of optional catch binding is discouraged. Please always include the error variable. - -`try..catch` flow control examples: -```JavaScript -try { - do_something(); -} catch(e) { - handle_error(e); -} finally { - always(); -} - -try { - do_something(); -} catch(e) {} - -try { - do_something(); -} finally { - always(); -} -``` -DISCOURAGED -```JavaScript -try { - do_something(); -} catch { - // No error processing - do_something_else(); -} -``` - -### Long line wrapping -If statements on a single line become overly long, they should be split into multiple lines: -- Binary operators (including ternary) must be left on their original lines if the line break happens around the operator. The second line should start in the same column as the start of the expression in the first line. -- Lists of variables (e.g. when calling or declaring a function) should be split at the wrapping column. -- Long OOP calls should be split at the period with the period on the start of the new line, indented to the column of the first object, filling to the wrapping column where possible, including additional terms. -- When breaking assignments/operations/logic, break right after the operator (`=`, `+`, `&&`, `||`, etc.) -- **Don't break too rigorously**; short additions should be kept on the same line to keep things legible - use common sense and context for flexibility. - -WRONG: -```JavaScript -somelongobjectname.somelongfunction( - var1, var2, var3, var4, var5); - -if (somelongvariable == somelongothervariable - || somelongvariable2 == somelongothervariable2) { - -somelongvariable = somelongexpression ? somevalue1 - : somevalue2; - -var iShouldntBeUsingThisLongOfAVarName - = someValueToAdd + someValueToAdd + someValueToAdd - + someValueToAdd; - -Cu.import("resource:///modules/DownloadsCommon.jsm", {}). - DownloadsCommon.initializeAllDataLinks(); -``` -CORRECT: -```JavaScript -somelongobjectname.somelongfunction(var1, var2, var3, - var4, var5); - -if (somelongvariable == somelongothervariable || - somelongvariable2 == somelongothervariable2) { - -somelongvariable = somelongexpression ? - somevalue1 : - somevalue2; - -var iShouldntBeUsingThisLongOfAVarName = - someValueToAdd + someValueToAdd + someValueToAdd + - someValueToAdd; - -Cu.import("resource:///modules/DownloadsCommon.jsm", {}) - .DownloadsCommon.initializeAllDataLinks(); - -let sessionStartup = Cc["@mozilla.org/browser/sessionstartup;1"] - .getService(Ci.nsISessionStartup); -``` - -## XUL and other XML-derivatives -Applies to `*.xul`, `*.html`, `*.xhtml`. -TODO -## IDL -Applies to `*.idl`, `*.xpidl` and `*.webidl`. -TODO -## Python-esque -Applies to `*.py`, `mozbuild` etc. -TODO -- cgit v1.2.3